Why null return on getting a class constructor?
class myClass { public int a { get; set; } public int b { get; set; } public myClass() { a = 0; b = 0; } } private void Form1_Load(object sender, EventArgs e) { Type t = typeof(myClass).GetType(); ConstructorInfo constr = t.GetConstructor(new[] { t }); } But when you access GetConstructors everything returns normally.
myClassthere is no constructor that takes as an argument an object of the classmyClass- Grundy