げんさん日記

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

プロパティの属性を取得する。

2022年06月30日 09時40分43秒 | C#
プロパティに設定してある指定の属性を取得する。

var attribute = (DespriptionAttribute)propertyInfo.GetCustomeAttribute(typeof(DespriptionAttribute), true).SingleOrDefault();
if (attribute ==null) return;

上記はDespription属性を取得して存在をチェックしてます。