コード例 #1
0
            public CodeBlock(APIEmitter apiEmitter, bool ident)
            {
                _apiEmitter = apiEmitter;
                _ident      = ident;

                _apiEmitter.EmitBlockStart(_ident);
            }
コード例 #2
0
 public void Dispose()
 {
     if (_apiEmitter != null)
     {
         _apiEmitter.EmitBlockEnd(_ident);
         _apiEmitter = null;
     }
 }
コード例 #3
0
ファイル: APIEmitter.cs プロジェクト: dsgouda/buildtools
 public void Dispose()
 {
     if (_apiEmitter != null)
     {
         _apiEmitter.EmitBlockEnd(_ident);
         _apiEmitter = null;
     }
 }
コード例 #4
0
ファイル: APIEmitter.cs プロジェクト: dsgouda/buildtools
            public CodeBlock(APIEmitter apiEmitter, bool ident)
            {
                _apiEmitter = apiEmitter;
                _ident = ident;

                _apiEmitter.EmitBlockStart(_ident);
            }
コード例 #5
0
ファイル: APIEmitter.cs プロジェクト: pgavlin/ApiTools
 public void Dispose()
 {
     if (this._apiEmitter != null)
     {
         this._apiEmitter.EmitBlockEnd(this._ident);
         this._apiEmitter = null;
     }
 }
コード例 #6
0
ファイル: APIEmitter.cs プロジェクト: pgavlin/ApiTools
            public CodeBlock(APIEmitter apiEmitter, bool ident)
            {
                this._apiEmitter = apiEmitter;
                this._ident = ident;

                this._apiEmitter.EmitBlockStart(this._ident);
            }