CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Threaded View

  1. #1
    Join Date
    Oct 2010
    Posts
    11

    short instruction

    hello,

    I'm new to c sharp and I have a small problem.
    I have an array A of 4 elements.
    I want to check if an element e is part of the array, and if so return the index of this element (which is always unique) and assign it to a variable v.
    What's the easiest and shortest way of doing this, in one line if possible ?
    Something like var v = A.findNext(a=> a == e);
    The problem is that A.findNext doesn't exist, and A.contains only returns a boolean.

    Thanks.
    Last edited by elishac; October 26th, 2010 at 02:44 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured