Info ReflectedType method in .NET Core

How can we replace MethodInfo.ReflectedType

in .NET Core?

.NET Core 1.1 MethodInfo.ReflectedType

is still not available.
What is this alternative?

+3


source to share


1 answer


There is a neat website APIsOf.Net where you can find complete information on the classes available in the .Net world.



As it now appears, the abstract property MemberInfo.ReflectedType

will only be available in version 2.0 .Net Standard

, so all its implementations.

+4


source







All Articles