2 writes to value
System.Data.SqlXml (2)
System\Xml\Xsl\SourceLineInfo.cs (2)
20
this.
value
= (((ulong)line) << 32) | (uint)pos;
24
this.
value
= that.value;
5 references to value
System.Data.SqlXml (5)
System\Xml\Xsl\SourceLineInfo.cs (5)
16
public int Line { get { return (int)(this.
value
>> 32); } }
17
public int Pos { get { return (int)(this.
value
); } }
24
this.value = that.
value
;
28
return this.
value
<= that.
value
;