コード例 #1
0
ファイル: EasyCodeDom.cs プロジェクト: giszzt/GeoSOS
 public EasyMethod()
 {
     body = new EasyBlock(this.Statements);
 }
コード例 #2
0
ファイル: EasyCodeDom.cs プロジェクト: giszzt/GeoSOS
 public EasyProperty()
 {
     getter = new EasyBlock(this.GetStatements);
     setter = new EasyBlock(this.SetStatements);
 }