C#の現在のタイプによって実装または継承されたすべてのインターフェイスを取得します
現在のタイプによって実装または継承されたすべてのインターフェイスを取得するには、コードは次のとおりです-
例
using System; public class Demo { public static void Main() { Type type = typeof(float); Type myInterface = type.GetInterface("IFormattable",true); Type[] myInterfaces = type.GetInterfaces(); Console.WriteLine("Interface = "+myInterface); Console.WriteLine("All the Interfaces..."); for (int i = 0; i < myInterfaces.Length; i++) Console.WriteLine(""+myInterfaces[i]); } }
出力
これにより、次の出力が生成されます-
Interface = System.IFormattable All the Interfaces... System.IComparable System.IFormattable System.IConvertible System.IComparable`1[System.Single] System.IEquatable`1[System.Single]
別の例を見てみましょう-
例
using System; public class Demo { public static void Main() { Type type = typeof(int); Type myInterface = type.GetInterface("IFormattable"); Type[] myInterfaces = type.GetInterfaces(); Console.WriteLine("Interface = "+myInterface); Console.WriteLine("All the Interfaces..."); for (int i = 0; i < myInterfaces.Length; i++) Console.WriteLine(""+myInterfaces[i]); } }
出力
これにより、次の出力が生成されます-
Interface = System.IFormattable All the Interfaces... System.IComparable System.IFormattable System.IConvertible System.IComparable`1[System.Int32] System.IEquatable`1[System.Int32]
-
C#で現在のインスタンスのタイプを取得する
現在のインスタンスのタイプを取得するためのコードは次のとおりです- 例 using System; public class Demo { public static void Main(){ string s = "Demo"; Console.WriteLine("String = " +s); Console.WriteLine("String Type = " +s.GetTy
-
指定された列挙型のタイプを取得するC#プログラム
GetType()メソッドを使用して、列挙型のタイプを取得します。 列挙。 Enum[] values = { ConsoleColor.Blue, DayOfWeek.Sunday}; 次に、型を取得するには、GetType()メソッドを使用します。 Type enumType = val.GetType(); 以下は、タイプを表示する例です。 例 using System; public class Demo { public static void Main() { Enum[] values = { Consol