PERWAPI.PDBSequencePoint.PDBSequencePoint C# (CSharp) Méthode

PDBSequencePoint() private méthode

Create a new sequence point.
private PDBSequencePoint ( int offset, PDBDocument doc, int line, int col, int endLine, int endCol ) : System
offset int
doc PDBDocument The source file.
line int The line the point begins on.
col int The column the point begins with.
endLine int The line the point ends on.
endCol int The column the point ends with.
Résultat System
        internal PDBSequencePoint(int offset, PDBDocument doc, int line, int col, int endLine, int endCol)
        {
            _offset = offset;
            _document = doc;
            _line = line;
            _column = col;
            _endLine = endLine;
            _endColumn = endCol;
        }
PDBSequencePoint