In nested class get incomplete reference to nested property:
The example:
public class Gatos
{
public string name {get; set;}
public Color colores {get; set;}
public class Color
{
public string[] color {get; set;}
}
}
Get this:
Gatos gatos = new Gatos() {
name = "",
colores = new Color(),
};
Instead this:
Gatos gatos = new Gatos(){
name="",
colores=new Gatos.Color(){
color=new string[]{}
}
};
Best regards!
In nested class get incomplete reference to nested property:
The example:
Get this:
Instead this:
Best regards!