What is the equivalent in C# for Delphi's in syntax, like:
if (iIntVar in [2,96]) then
begin
//some code
end;
Thanks
feedback
|
|
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:
And usage would be
or
| ||||
|
feedback
|
|
There is no such equivalent. The closest is the Contains() extension method of a collection. Example:
| |||||||||||||||||
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
And usage would be
| |||||||||||
feedback
|
|
You can create this extension method:
then you can do this:
| |||
|
feedback
|
|
You could write an extension method
| ||||
|
feedback
|
|
To expand upon what Mason Wheeler wrote in a comment, this would be HashSet<T>.Contains (under .NET 3.5).
| |||
|
feedback
|