MethodInfo.ReflectedType
を.NET Coreに置き換えるにはどうすればよいですか?MethodInfo ReflectedType in .NETコア
.NET Core 1.1ではまだMethodInfo.ReflectedType
は利用できません。
代替手段は何ですか?
MethodInfo.ReflectedType
を.NET Coreに置き換えるにはどうすればよいですか?MethodInfo ReflectedType in .NETコア
.NET Core 1.1ではまだMethodInfo.ReflectedType
は利用できません。
代替手段は何ですか?
ネイティブサイトAPIsOf.Netがあります。ここでは、.Netの世界で利用可能なクラスに関する完全な情報を見つけることができます。
抽象的なプロパティMemberInfo.ReflectedType
は、バージョン.Net Standard
の2.0でのみ使用できるため、すべての実装にしてください。
私は 'PropertyInfo.ReflectedType'と同じ理由と回避策を想定しています:http://stackoverflow.com/questions/42126798/whats-the-equivalent-to-propertyinfo-reflectedtype-in-net-core-net-標準 –