public OperatorDeclaration(string?name)
 {
     Statements = new StatementCollection(this);
     Arguments  = new MethodArgumentCollection(this);
     Name       = name;
 }
 public MethodDeclaration(string?name)
 {
     Arguments  = new MethodArgumentCollection(this);
     Parameters = new CodeObjectCollection <TypeParameter>(this);
     Name       = name;
 }
예제 #3
0
 public ConstructorDeclaration()
 {
     Arguments  = new MethodArgumentCollection(this);
     Statements = new StatementCollection(this);
 }