オブジェクトの型を取得するには、typeof() を使用します。
サンプル
例)StringとStringBuilderとbyte配列の型を取得する
Type a = typeof(String);
Console.WriteLine(a);
Type b = typeof(StringBuilder);
Console.WriteLine(b);
Type c = typeof(byte[]);
Console.WriteLine(c);
結果
System.String
System.Text.StringBuilder
System.Byte[]
備考
- typeofは、System.Type型を返します。