次のような短い書き方はありますか。
if(x==1 || x==2 || x==3) // do something
私が探しているのは次のようなものです:
if(x.in((1,2,3)) // do something
List.Containsメソッドを使用してこれを実現できます。
if(new []{1, 2, 3}.Contains(x))
{
//x is either 1 or 2 or 3
}
public static bool In<T>(this T x, params T[] set)
{
return set.Contains(x);
}
...
if (x.In(1, 2, 3))
{ ... }
必読: MSDN 拡張メソッド
にある場合はIEnumerable<T>
、これを使用します。
if (enumerable.Any(n => n == value)) //whatever
それ以外の場合は、短い拡張メソッドを次に示します。
public static bool In<T>(this T value, params T[] input)
{
return input.Any(n => object.Equals(n, value));
}
に入れると、次のstatic class
ように使用できます。
if (x.In(1,2,3)) //whatever
int x = 1;
if((new List<int> {1, 2, 3}).Contains(x))
{
}
ここでは完全に推測しています。間違っている場合はコードを修正してください。
(new int[]{1,2,3}).IndexOf(x)>-1
その問題の決定表Dictionary<TKey, TValue>
として使用される単純なものを作成できます。
//Create your decision-table Dictionary
Action actionToPerform1 = () => Console.WriteLine("The number is okay");
Action actionToPerform2 = () => Console.WriteLine("The number is not okay");
var decisionTable = new Dictionary<int, Action>
{
{1, actionToPerform1},
{2, actionToPerform1},
{3, actionToPerform1},
{4, actionToPerform2},
{5, actionToPerform2},
{6, actionToPerform2}
};
//According to the given number, the right *Action* will be called.
int theNumberToTest = 3;
decisionTable[theNumberToTest](); //actionToPerform1 will be called in that case.
を初期化したらDictionary
、あとは次のとおりです。
decisionTable[theNumberToTest]();
この回答は、C# の将来のバージョンの可能性を示しています ;-) Visual Basic への切り替えを検討している場合、または Microsoft が最終的に Select Case ステートメントを C# に導入することを決定した場合、次のようになります。
Select Case X
Case 1, 2, 3
...
End Select