Tools.SourceLineInfo.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return "Line "+lineNumber+", char "+(rawCharPosition+1);
        }

Usage Example

Exemplo n.º 1
0
 public CSToolsException(int en, SourceLineInfo s, string y, string m)
     : base(s.ToString() + ": " + m)
 {
     this.nExceptionNumber = en;
     this.slInfo           = s;
     this.sInput           = y;
 }
All Usage Examples Of Tools.SourceLineInfo::ToString