Generating empty objects - empty class with empty properties/subclasses C#

39.2k Views Asked by At

I have two classes:

public class HumanProperties { int prop1; int prop2; string name;}

public class Human{int age; HumanProperties properties;}

Now if i want to create new instance of Human, i have to do Human person = new Human(); But when i try to access like person.properties.prop1=1; then i have nullRefrence at properties, beacuse i have to make new properties too. I have to make like that:

Human person = new Human();
person.properties = new HumanProperties();

and now i can access this person.properties.prop1=1;

This was small example, but i have huge class generated from xsd and i dont have so much time for generating manually this "person" class with all its subclasses. Is there some way how to do it programmatically or is there some generator for that?

Or can i loop through class and make for every property new class typeof property and join it to parent class?

Thanks!

4

There are 4 best solutions below

0
On BEST ANSWER

I don't thing there is a conventional way to do what you're asking for as the default type for classes is null. However, you can use reflection to recursively loop through the properties, looking for public properties with parameter-less constructors and initialize them. Something like this should work (untested):

void InitProperties(object obj)
{
    foreach (var prop in obj.GetType()
        .GetProperties(BindingFlags.Public | BindingFlags.Instance)
        .Where(p => p.CanWrite))
    {
        var type = prop.PropertyType;
        var constr = type.GetConstructor(Type.EmptyTypes); //find paramless const
        if (type.IsClass && constr != null)
        {
            var propInst = Activator.CreateInstance(type);
            prop.SetValue(obj, propInst, null);
            InitProperties(propInst);
        }
    }
}

Then you can use this like so:

var human = new Human();
InitProperties(human); 
0
On

You can change your class declaration to this:

public class Human
{
    int age;
    HumanProperties properties = new HumanProperties();
}
3
On

I would suggest you use the constructor:

public class Human
{
  public Human()
  {
     Properties = new HumanProperties();
  }

  public int Age {get; set;} 
  public HumanProperties Properties {get; set;}
}
3
On

.NET makes use of properties.

You can use the Visual Studio keyboard shortcut: Ctrl+r, Ctrl+e to auto generate the property.

Try this:

public class HumanProperties
{
    public int Prop1
    {
        get { return _prop1; }
        set { _prop1 = value; }
    }
    private int _prop1 = 0;

    public int Prop2
    {
        get { return _prop2; }
        set { _prop2 = value; }
    }
    private int _prop2;

    public string Name
    {
        get { return _name; }
        set { _name = value; }
    }
    private string _name = String.Empty;
}

public class Human
{
    public int Age
    {
        get { return _age; }
        set { _age = value; }
    }
    private int _age = 0;

    public HumanProperties Properties
    {
        get { return _properties; }
        set { _properties = value; }
    }
    private HumanProperties _properties = new HumanProperties();
}