1 write to _value
System.Private.Xml (1)
System\Xml\Xsl\SourceLineInfo.cs (1)
18_value = (((ulong)line) << 32) | (uint)pos;
4 references to _value
System.Private.Xml (4)
System\Xml\Xsl\SourceLineInfo.cs (4)
13public int Line { get { return (int)(_value >> 32); } } 14public int Pos { get { return unchecked((int)(_value)); } } 23return _value <= that._value;