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;
471
result.
_nanoseconds
= NegativeBit;
475
result.
_nanoseconds
= 0;
588
result.
_nanoseconds
|= (uint)value;
2 references to _nanoseconds
System.Private.Xml (2)
System\Xml\Schema\XsdDuration.cs (2)
174
get { return (
_nanoseconds
& NegativeBit) != 0; }
230
get { return (int)(
_nanoseconds
& ~NegativeBit); }