コード例 #1
0
 /// <summary>
 /// Allocates a range of source text that corresponds to a source line.
 /// </summary>
 internal PdbSourceLineLocation(PdbSourceDocument primarySourceDocument, int startLine, int startColumn, int endLine, int endColumn)
 {
     this.primarySourceDocument = primarySourceDocument;
     this.startLine             = startLine;
     this.startColumn           = startColumn;
     this.endLine   = endLine;
     this.endColumn = endColumn;
 }
コード例 #2
0
 /// <summary>
 /// Allocates a range of source text that corresponds to a source line.
 /// </summary>
 internal PdbSourceLineLocation(PdbSourceDocument primarySourceDocument, int startLine, int startColumn, int endLine, int endColumn) {
   this.primarySourceDocument = primarySourceDocument;
   this.startLine = startLine;
   this.startColumn = startColumn;
   this.endLine = endLine;
   this.endColumn = endColumn;
 }