See below code and can someone help me....
public class person
{
Public string name { get; set; };
Public personDetails Pdetails { get; };
}
public class personDetails
{
Public bool hasChild { get; set; }
Public string ChildName { get; set; }
}
static void Main(string[] args)
{
Type type = asm.GetType(person);
object classInstance = Activator.CreateInstance(type);
PropertyInfo prop = type.GetProperty("Pdetails ", BindingFlags.Public | BindingFlags.Instance);
if (null != prop && prop.CanWrite)
{
prop.SetValue(classInstance, null , null);
}
}
getting Error for property not found.
string?? String is a reference type. – asawyer Jul 18 '12 at 12:14type.GetProperty("Pdetails "property names cannot contain spaces. – Rafal Jul 18 '12 at 12:16Type type = asm.GetType(person)– Chris Moutray Jul 18 '12 at 12:16