クラスから属性を取得しようとしていますが、GetCustomAttributesメソッドがないようです。 CoreCLRで属性を取得する方法は?CoreCLRのType.GetCustomAttributesメソッドはどこですか?
using System.Reflection;
class FooBar {
FooBar() {
GetType().GetCustomAttributes(); // does not compile
GetType().GetField("test").GetCustomAttributes(); // compiles
}
}