What is the equivalent in C# for Delphi's in syntax, like:


  if (iIntVar in [2,96]) then 
  begin
    //some code
  end;

Thanks

link|improve this question

1  
There is a similar question circulating here stackoverflow.com/questions/2356949/… – Mark Mar 1 '10 at 16:08
1  
Similar, but not close enough for a close vote, IMO. – Randolpho Mar 1 '10 at 16:09
No, no. The similar question is this one: stackoverflow.com/questions/2310617/… – Rob Kennedy Mar 1 '10 at 18:44
feedback

6 Answers

up vote 5 down vote accepted

I prefer a method like defined here: http://stackoverflow.com/questions/2356949/comparing-a-variable-to-multiple-values/2357002#2357002

Here's the conversion of Chad's post:

public static bool In(this T obj, params T[] arr)
{
    return arr.Contains(obj);
}

And usage would be

if (intVar.In(12, 42, 46, 74) ) 
{ 
    //TODO: Something 
} 

or

if (42.In(x, y, z))
    // do something
link|improve this answer
Very interesting option. +1. – Randolpho Mar 1 '10 at 16:24
feedback

There is no such equivalent. The closest is the Contains() extension method of a collection.

Example:

var vals = new int[] {2, 96};
if(vals.Contains(iIntVar))
{
  // some code
}
link|improve this answer
1  
There is no such equivalent. Isn't Contains the same as in as they are both simply checking if the value is in the array? – James Mar 1 '10 at 16:09
Contains only checks for those values not between them see delphibasics.co.uk/RTL.asp?Name=In – John Nolan Mar 1 '10 at 16:12
1  
Thanks for your time and answer! – Pascal Mar 1 '10 at 16:16
@James: Contains works the same as in, but is not a syntactic idiom controlled by the compiler, it's a library call. There is no such language equivalent, only library support. – Randolpho Mar 1 '10 at 16:17
3  
Actually [2..96] would have created a set containing the values 2..96, which uses a lot fewer bytes to represent, and can be tested in O(1) time, instead of the linear search that an array scan requires. – Mason Wheeler Mar 1 '10 at 16:33
show 2 more comments
feedback

In .Net, .Contains is the closest, but the syntax is the opposite of what you wrote.

You could write an extension method to be able to create a .In method

public static bool In<T>(this T obj, IEnumerable<T> arr)
 {
  return arr.Contains(obj);
 }

And usage would be

if (42.In(new[] { 12, 42, 46, 74 }) )
{
    //TODO: Something
}
link|improve this answer
6  
using a params array makes the syntax a little nicer. 42.In(12,42,46,74); – Mark Mar 1 '10 at 16:10
Thanks for your time and answer! – Pascal Mar 1 '10 at 16:17
@Mark, +1, indeed it would, though then again, it depends if your array is already in a variable or not already. IMHO, it should be, as a list of magic numbers is a code smell. In which case, IEnumerable allows you to pass in an array, or List, etc – Chad Mar 1 '10 at 16:33
You can still pass in an array, but you would be limited to an array. I agree about the magic numbers. I've used this when checking against an enum (e.g. state.In(Closed,Closing,Unavailable) ...etc) – Mark Mar 1 '10 at 17:24
feedback

You can create this extension method:

public static class ExtensionMethods
{
    public static bool InRange(this int val, int lower, int upper)
    {
        return val >= lower && val <= upper;
    }
}

then you can do this:

int i = 56;
if (i.InRange(2, 96)) { /* ... */ }
link|improve this answer
feedback

You could write an extension method

 public static bool In(this int value, int[] range)
    {
        return (value >= range[0] && value <= range[1]);
    }
link|improve this answer
feedback

To expand upon what Mason Wheeler wrote in a comment, this would be HashSet<T>.Contains (under .NET 3.5).

int i = 96;
var set = new HashSet<int> { 2, 96 };

if (set.Contains(i))
{
   Console.WriteLine("Found!");
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.