-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
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!
Metadata
Metadata
Assignees
Labels
No labels