I have a PCL code that I want to port to .NetStandard. Unfortunately, my code depends on .Net reflection, and I cannot find some of the previously available methods. So, here is a list of methods or properties that I cannot find in .NetStandard. Can someone point me in the right direction how to refactor my code?
Type.IsInstanceOfType() Type.IsAssignableFrom() Type.GetNestedTypes() Type.GetConstructors() Type.IsClass Type.IsEnum Type.IsValueType
source share