當前位置: 首頁>>代碼示例>>C#>>正文


C# DateTimeFormatInfo.ThrowIfNull方法代碼示例

本文整理匯總了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 );
        }
開發者ID:MannusEtten,項目名稱:Extend,代碼行數:14,代碼來源:DateTime.ToShortDateString.cs

示例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 );
        }
開發者ID:MannusEtten,項目名稱:Extend,代碼行數:14,代碼來源:DateTime.ToUniversalSortableLongDateTimeString.cs

示例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 );
        }
開發者ID:MannusEtten,項目名稱:Extend,代碼行數:13,代碼來源:DateTime.ToFullDateTimeString.cs


注:本文中的System.Globalization.DateTimeFormatInfo.ThrowIfNull方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。