If I define a class with a private default constructor and a public constructor that has parameters, how can I access the private constructor?
public class Bo
If you're using dotnet core you can do the following without even having to fiddle with any reflection:
YourCustomObject player = (YourCustomObject)Activator.CreateInstance(typeof(YourCustomObject),true);
Activator is just in the System namespace.