げんさん日記

プログラミングで気付いた事等を書きます。

プロパティの型を判断する。

2022年07月06日 07時57分53秒 | C#
システム型
if (propertyInfo.PropertyType.Name == "Int32")

NULLL許可型
if (propertyInfo.PropertyType.IsGenericType == true &&       propertyInfo.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>)) 

ジェネリック配列型
if (propertyInfo.PropertyType.IsGenericType == true)