Example #1
0
 public EasyProperty()
 {
     getter = new EasyBlock(this.GetStatements);
     setter = new EasyBlock(this.SetStatements);
 }
 public EasyMethod()
 {
     body = new EasyBlock(this.Statements);
 }
Example #3
0
 public EasyMethod()
 {
     body = new EasyBlock(this.Statements);
 }
 public EasyProperty()
 {
     getter = new EasyBlock(this.GetStatements);
     setter = new EasyBlock(this.SetStatements);
 }