I am trying to use reflection to create instance of a class. But it is sealed internal and has private constructor. I wonder how can i initiaise it and as its part of framew
Use the Activator class to instantiate it
Activator.CreateInstance(myType, true);