コード例 #1
0
        public PdbSourceLocation(Context cx, PDB.Location location) : base(cx)
        {
            this.location = location;
            file          = cx.CreateSourceFile(location.File);

            ShortId = file.ShortId + separator + new IntId(location.StartLine) + separator + new IntId(location.StartColumn) + separator + new IntId(location.EndLine) + separator + new IntId(location.EndColumn);
        }
コード例 #2
0
 public PdbSourceLocation(Context cx, PDB.Location location) : base(cx)
 {
     this.location = location;
     file          = cx.CreateSourceFile(location.File);
 }