DateTimeFormatInfo.TimeSeparator 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置分隔时间中各组成部分(即小时、分钟和秒钟)的字符串。
public:
property System::String ^ TimeSeparator { System::String ^ get(); void set(System::String ^ value); };
public string TimeSeparator { get; set; }
member this.TimeSeparator : string with get, set
Public Property TimeSeparator As String
属性值
分隔时间中各组成部分的字符串。 InvariantInfo 的默认值为“:”。
例外
该属性设置为 null
。
设置了该属性,但 DateTimeFormatInfo 对象为只读。
示例
以下示例实例化 CultureInfo en-US 区域性的对象,将其日期分隔符更改为“.”,并使用“t”、“T”、“F”、“f”、“G”和“g”标准格式字符串显示日期。
using System;
using System.Globalization;
public class Example
{
public static void Main()
{
DateTime value = new DateTime(2013, 9, 8, 14, 30, 0);
string[] formats = { "t", "T", "f", "F", "G", "g" };
CultureInfo culture = CultureInfo.CreateSpecificCulture("en-US");
DateTimeFormatInfo dtfi = culture.DateTimeFormat;
dtfi.TimeSeparator = ".";
foreach (var fmt in formats)
Console.WriteLine("{0}: {1}", fmt, value.ToString(fmt, dtfi));
}
}
// The example displays the following output:
// t: 2.30 PM
// T: 2.30.00 PM
// f: Sunday, September 08, 2013 2.30 PM
// F: Sunday, September 08, 2013 2.30.00 PM
// G: 9/8/2013 2.30.00 PM
// g: 9/8/2013 2.30 PM
Imports System.Globalization
Module Example
Public Sub Main()
Dim value As New Date(2013, 9, 8, 14, 30, 0)
Dim formats() As String = { "t", "T", "f", "F", "G", "g" }
Dim culture As CultureInfo = CultureInfo.CreateSpecificCulture("en-US")
Dim dtfi As DateTimeFormatInfo = culture.DateTimeFormat
dtfi.TimeSeparator = "."
For Each fmt In formats
Console.WriteLine("{0}: {1}", fmt, value.ToString(fmt, dtfi))
Next
End Sub
End Module
' The example displays the following output:
' t: 2.30 PM
' T: 2.30.00 PM
' f: Sunday, September 08, 2013 2.30 PM
' F: Sunday, September 08, 2013 2.30.00 PM
' G: 9/8/2013 2.30.00 PM
' g: 9/8/2013 2.30 PM
注解
如果自定义模式包含格式模式“:”, DateTime.ToString 则显示 的值 TimeSeparator 来代替格式模式中的“:”。
注意
标准格式模式(如 FullDateTimePattern)不一定使用“:”。 使用这些模式时,更改 TimeSeparator 可能不起作用。
时间分隔符派生自 ShortTimePattern 属性。 建议将短时间或长时间模式中的时间分隔符设置为确切的字符串,而不是使用时间分隔符占位符。 例如,若要获取模式 h-mm-ss,请将模式设置为“h-mm-ss”。 通过此做法,还可以设置包含多种类型的分隔符的模式,例如“h'h 'mm'm 'ss'”) (3h 36m 12s。 属性 TimeSeparator 定义替换时间分隔符 (“:”自定义日期和时间格式说明符的字符串,) 格式设置操作的结果字符串。 它还定义分析操作中的时间分隔符字符串。