5 references to Month
System.ComponentModel.TypeConverter (1)
System\ComponentModel\DateOnlyConverter.cs (1)
98return new InstanceDescriptor(typeof(DateOnly).GetConstructor(new Type[] { typeof(int), typeof(int), typeof(int) }), new object[] { date.Year, date.Month, date.Day });
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\DateOnly.cs (2)
197/// Deconstructs <see cref="DateOnly"/> by <see cref="Year"/>, <see cref="Month"/> and <see cref="Day"/>. 203/// Deconstructed parameter for <see cref="Month"/>.
System.Private.Xml (2)
System\Xml\Serialization\CodeGenerator.cs (1)
877Ldc(dateOnly.Month);
System\Xml\Serialization\XmlSerializationWriter.cs (1)
4422Writer.Write(((DateOnly)value).Month.ToString(CultureInfo.InvariantCulture));