예제 #1
0
 public Parameter(string type, string name)
 {
     Type = CSharp.Identifier(type);
     Name = CSharp.Identifier(name);
 }
예제 #2
0
 public ClassMember(string type, string name)
 {
     Type      = type;
     Name      = CSharp.Identifier(name);
     Modifiers = new List <string>();
 }
예제 #3
0
파일: Enum.cs 프로젝트: zyh329/excellibrary
 public Enum(string name)
 {
     Name   = CSharp.Identifier(name);
     Values = new List <string>();
 }