コード例 #1
0
ファイル: ArrayType.cs プロジェクト: MarioTheOne/Tigertron
 public override void DefineType(ICodeGenerator cg)
 {
     if (BaseType.ILType == null)
     {
         BaseType.DefineType(cg);
     }
     ILType = BaseType.ILType.MakeArrayType();
 }