9 writes to nanoseconds
System.Xml (9)
System\Xml\Schema\XsdDuration.cs (9)
65this.nanoseconds = (uint) nanoseconds; 68this.nanoseconds |= NegativeBit; 112this.nanoseconds = (uint) (ticksPos % 10000000) * 100; 114this.nanoseconds |= NegativeBit; 148this.nanoseconds = (uint)result.Nanoseconds; 150this.nanoseconds |= NegativeBit; 466result.nanoseconds = NegativeBit; 469result.nanoseconds = 0; 574result.nanoseconds |= (uint) value;
2 references to nanoseconds
System.Xml (2)
System\Xml\Schema\XsdDuration.cs (2)
159get { return (this.nanoseconds & NegativeBit) != 0; } 208get { return (int) (this.nanoseconds & ~NegativeBit); }