Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XmlIgnorepropertyInfo をチェックして、属性が特定のプロパティに適用されているかどうかを判断したいと考えています。これどうやってするの?
XmlIgnore
bool b = type.GetProperty("MyProp") .GetCustomAttributes(false) .Any(a => a is XmlIgnoreAttribute);
typeof(string).GetProperty("Length").GetCustomAttributes(typeof(some attr))