PERWAPI.CILInstructions.Line C# (CSharp) Method

Line() public method

Create a new line instruction.
public Line ( uint num, uint startCol ) : void
num uint The line for the given code segment.
startCol uint The starting column for the code segment.
return void
        public void Line(uint num, uint startCol)
        {
            if (this.DefaultSourceFile == null) throw new Exception("Method can only be used if DefaultSourceFile has been set.");
            AddToBuffer(new Line(num,startCol,this.DefaultSourceFile));
        }

Same methods

CILInstructions::Line ( uint num, uint startCol, uint endCol ) : void
CILInstructions::Line ( uint startNum, uint startCol, uint endNum, uint endCol ) : void
CILInstructions::Line ( uint startNum, uint startCol, uint endNum, uint endCol, SourceFile sFile ) : void