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