C#の現在の列挙型の定数の値の配列を取得します
現在の列挙型の定数の値の配列を取得するには、コードは次のとおりです-
例
using System; public class Demo { enum Vehicle {Car, Bus, Bike, Airplane} public static void Main() { try { Type type = typeof(int); string[] str = type.GetEnumNames(); Console.WriteLine("GetEnumNames() to return the constant name = " + str); Type type2 = type.GetEnumUnderlyingType(); Console.Write("Enum Underlying type = "+type2); Array arrObj = type.GetEnumValues(); Console.Write("Values = {0}"+arrObj); Console.WriteLine("\nListing constants .."); for (int i = 0; i < str.Length; i++) Console.Write("{0} ", str[i]); } catch (ArgumentException e) { Console.WriteLine("Not an enum!"); Console.Write("{0}", e.GetType(), e.Message); } } }
出力
これにより、次の出力が生成されます-
Not an enum! System.ArgumentException
例
別の例を見てみましょう-
using System; public class Demo { enum Vehicle {Car, Bus, Bike, Airplane} public static void Main() { try { Vehicle v = Vehicle.Bike; Type type = v.GetType(); string[] str = type.GetEnumNames(); Console.WriteLine("GetEnumName() to return the constant name = " + str); Type type2 = type.GetEnumUnderlyingType(); Console.Write("Enum Underlying type = "+type2); Array arrObj = type.GetEnumValues(); Console.Write("Values = "+arrObj); Console.WriteLine("\nListing constants .."); for (int i = 0; i < str.Length; i++) Console.Write("{0} ", str[i]); } catch (ArgumentException e) { Console.WriteLine("Not an enum!"); Console.Write("{0}", e.GetType(), e.Message); } } }
出力
これにより、次の出力が生成されます-
GetEnumName() to return the constant name = System.String[] Enum Underlying type = System.Int32Values = Demo+Vehicle[] Listing constants .. Car Bus Bike Airplane
-
C#のStringDictionaryで値のコレクションを取得します
StringDictionaryの値のコレクションを取得するには、コードは次のとおりです- 例 using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ StringDictionary strDict1 = new StringDictionary(); strDict1.Add("S
-
C#のジャグ配列の要素のタイプは何ですか?
ジャグ配列は配列の配列であるため、その要素は参照型であり、nullに初期化されます。 ジャグ配列の操作方法を見てみましょう- ジャグ配列を宣言する- int [][] marks; ここで、それを初期化します。ここで、marksは5つの整数の配列です- int[][] marks = new int[][]{new int[]{ 40,57 },new int[]{ 34,55 }, new int[]{ 23,44 },new int[]{ 56, 78 }, new int[]{ 66, 79 } }; ここで、C#でのジャグ配列の完全な例を見て、それを実装する方法を学びましょう-