How can we replace MethodInfo.ReflectedType in .NET Core?
In .NET Core 1.1 MethodInfo.ReflectedType is still unavailable.
What is it alternative?
There is a neat site, APIsOf.Net, where you can find the full info about classes availabily in .Net world.
As it seems for now, the abstract property MemberInfo.ReflectedType will be available only in 2.0 version of .Net Standard, so be all of it's implementations.
PropertyInfo.ReflectedType: stackoverflow.com/questions/42126798/…