예제 #1
0
 public ClassBuilder(IRegistry reg, Action <IRegistry, StringBuilder, T> toText)
 {
     _registry = reg;
     _class    = new Class <T>(reg, toText);
     Methods   = new AddMethod(this);
 }
예제 #2
0
 public ClassBuilder(IRegistry reg)
 {
     _registry = reg;
     _class    = new Class <T>(reg);
     Methods   = new AddMethod(this);
 }