本文整理匯總了C#中System.Globalization.DateTimeFormatInfo.ThrowIfNull方法的典型用法代碼示例。如果您正苦於以下問題:C# DateTimeFormatInfo.ThrowIfNull方法的具體用法?C# DateTimeFormatInfo.ThrowIfNull怎麽用?C# DateTimeFormatInfo.ThrowIfNull使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Globalization.DateTimeFormatInfo
的用法示例。
在下文中一共展示了DateTimeFormatInfo.ThrowIfNull方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: ToShortDateString
/// <summary>
/// Converts the DateTime value to a short date string.
/// </summary>
/// <exception cref="ArgumentNullException">The format info can not be null.</exception>
/// <param name="dateTime">The DateTime value to convert.</param>
/// <param name="formatInfo">The date time format info.</param>
/// <returns>The given value converted to a short date string.</returns>
public static String ToShortDateString( this DateTime dateTime, DateTimeFormatInfo formatInfo )
{
dateTime.ThrowIfNull( nameof( dateTime ) );
formatInfo.ThrowIfNull( nameof( formatInfo ) );
return dateTime.ToString( "d", formatInfo );
}
示例2: ToUniversalSortableLongDateTimeString
/// <summary>
/// Converts the DateTime value to a universal sortable long date time string.
/// </summary>
/// <exception cref="ArgumentNullException">The format info can not be null.</exception>
/// <param name="dateTime">The DateTime value to convert.</param>
/// <param name="formatInfo">The date time format info.</param>
/// <returns>The given value converted to a universal sortable long date time string.</returns>
public static String ToUniversalSortableLongDateTimeString( this DateTime dateTime,
DateTimeFormatInfo formatInfo )
{
formatInfo.ThrowIfNull( nameof( formatInfo ) );
return dateTime.ToString( "U", formatInfo );
}
示例3: ToFullDateTimeString
/// <summary>
/// Converts the DateTime value to a full date time string.
/// </summary>
/// <exception cref="ArgumentNullException">The format info can not be null.</exception>
/// <param name="dateTime">The DateTime value to convert.</param>
/// <param name="formatInfo">The date time format info.</param>
/// <returns>The given value converted to a full date time string.</returns>
public static String ToFullDateTimeString( this DateTime dateTime, DateTimeFormatInfo formatInfo )
{
formatInfo.ThrowIfNull( nameof( formatInfo ) );
return dateTime.ToString( "F", formatInfo );
}