Type t = Type.GetType("System.Windows.Forms.TreeNode");
object[] param = new object[0];
ConstructorInfo[] ci = t.GetConstructors();
object o = ci[0].Invoke
(BindingFlags.CreateInstance,null,param,null);
Be sure to pass param with expected binding for one of the TreeNode constructor (in your case, that's a String object).