BTDB.IL.SourceCodeWriter.OpenScope C# (CSharp) Method

OpenScope() private method

private OpenScope ( ) : void
return void
        internal void OpenScope()
        {
            WriteLine("{");
            Indent++;
        }

Usage Example

Example #1
0
 public IILGen Try()
 {
     _sourceCodeWriter.MarkAndWriteLine(_ilGenerator, "try");
     _sourceCodeWriter.OpenScope();
     _ilGenerator.BeginExceptionBlock();
     return(this);
 }
All Usage Examples Of BTDB.IL.SourceCodeWriter::OpenScope