4 writes to months
System.Xml (4)
System\Xml\Schema\XsdDuration.cs (4)
60this.months = months; 117this.months = 0; 143this.months = result.Months; 498result.months = value;
5 references to months
System.Xml (5)
System\Xml\Schema\XsdDuration.cs (5)
173get { return this.months; } 304ticks += ((ulong) this.years + (ulong) this.months / 12) * 365; 305ticks += ((ulong) this.months % 12) * 30; 379if (this.months != 0) { 380sb.Append(XmlConvert.ToString(this.months));