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