Tools.Lexer.sourceLineInfo C# (CSharp) Méthode

sourceLineInfo() public méthode

public sourceLineInfo ( int pos ) : SourceLineInfo
pos int
Résultat SourceLineInfo
        public SourceLineInfo sourceLineInfo(int pos)
        {
            return new SourceLineInfo(this,pos); // 4.5c
        }

Usage Example

Exemple #1
0
 public CSToolsException(int en, Lexer yl, int p, string y, string s) : this(en, yl.sourceLineInfo(p), y, s)
 {
 }
All Usage Examples Of Tools.Lexer::sourceLineInfo