Exemple #1
0
        public Class(string name)
        {
            Name         = CSharp.Identifier(name);
            Usings       = new List <string>();
            Members      = new List <ClassMember>();
            Constructors = new List <string>();

            Modifiers = new List <string>();
        }
Exemple #2
0
 public Parameter(string type, string name)
 {
     Type = CSharp.Identifier(type);
     Name = CSharp.Identifier(name);
 }
Exemple #3
0
 public ClassMember(string type, string name)
 {
     Type      = type;
     Name      = CSharp.Identifier(name);
     Modifiers = new List <string>();
 }
Exemple #4
0
 public Enum(string name)
 {
     Name   = CSharp.Identifier(name);
     Values = new List <string>();
 }