9 writes to _nanoseconds
System.Private.Xml (9)
System\Xml\Schema\XsdDuration.cs (9)
66_nanoseconds = (uint)nanoseconds; 69_nanoseconds |= NegativeBit; 120_nanoseconds = (uint)(ticksPos % 10000000) * 100; 122_nanoseconds |= NegativeBit; 160_nanoseconds = (uint)result.Nanoseconds; 163_nanoseconds |= NegativeBit; 471result._nanoseconds = NegativeBit; 475result._nanoseconds = 0; 588result._nanoseconds |= (uint)value;
2 references to _nanoseconds
System.Private.Xml (2)
System\Xml\Schema\XsdDuration.cs (2)
174get { return (_nanoseconds & NegativeBit) != 0; } 230get { return (int)(_nanoseconds & ~NegativeBit); }