System.Globalization.CCGregorianCalendar.GetDayOfMonth C# (CSharp) Method

GetDayOfMonth() public static method

Gets the of the month from time.
public static GetDayOfMonth ( System time ) : int
time System The /// that specifies a /// date. ///
return int
	public static int GetDayOfMonth(System.DateTime time) {
		return day_from_fixed(CCFixed.FromDateTime(time));
	}

Usage Example

Example #1
0
 /// <summary>Returns the day of the month in the specified <see cref="T:System.DateTime" />.</summary>
 /// <returns>An integer from 1 to 31 that represents the day of the month in the specified <see cref="T:System.DateTime" />.</returns>
 /// <param name="time">The <see cref="T:System.DateTime" /> to read. </param>
 public override int GetDayOfMonth(DateTime time)
 {
     return(CCGregorianCalendar.GetDayOfMonth(time));
 }
All Usage Examples Of System.Globalization.CCGregorianCalendar::GetDayOfMonth