C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のDateTime.ToShortTimeString()メソッド


C#のDateTime.ToShortTimeString()メソッドは、現在のDateTimeオブジェクトの値を同等の短時間の文字列表現に変換するために使用されます。

構文

以下は構文です-

public string ToShortTimeString ();

ここで、DateTime.ToShortTimeString()メソッドを実装する例を見てみましょう-

using System;
using System.Globalization;
public class Demo {
   public static void Main() {
      DateTime d = DateTime.Now;
      Console.WriteLine("Date = {0}", d);
      Console.WriteLine("Current culture = "+CultureInfo.CurrentCulture.Name);
      var pattern = CultureInfo.CurrentCulture.DateTimeFormat;
      string str = d.ToShortTimeString();
      Console.WriteLine("Short time string = {0}", pattern.ShortTimePattern);
      Console.WriteLine("Short time string representation = {0}", str);
   }
}

出力

これにより、次の出力が生成されます-

Date = 10/16/2019 8:59:23 AM
Current culture = en-US
Short time string = h:mm tt
Short time string representation = 8:59 AM

ここで、DateTime.ToShortTimeString()メソッドを実装する別の例を見てみましょう-

using System;
public class Demo {
   public static void Main() {
      DateTime d = new DateTime(2019, 11, 11, 7, 11, 25);
      Console.WriteLine("Date = {0}", d);
      string str = d.ToShortTimeString();
      Console.WriteLine("Short time string representation = {0}", str);
   }
}

出力

これにより、次の出力が生成されます-

Date = 11/11/2019 7:11:25 AM
Short time string representation = 7:11 AM

  1. C#のDateTime.GetDateTimeFormats()メソッド

    C#のDateTime.GetDateTimeFormats()メソッドは、このインスタンスの値を、標準の日付と時刻の形式指定子でサポートされているすべての文字列表現に変換するために使用されます。 構文 以下は構文です- public string[] GetDateTimeFormats () public string[] GetDateTimeFormats (char ch); 上記のchは、標準の日付と時刻のフォーマット文字列です。 例 ここで、DateTime.GetDateTimeFormats()メソッドを実装する例を見てみましょう- using System; publ

  2. C#のDateTime.ToLongTimeString()メソッド

    C#のDateTime.ToLongTimeString()メソッドは、現在のDateTimeオブジェクトの値を同等の長い時間文字列表現に変換するために使用されます。 構文 以下は構文です- public string ToLongTimeString (); 例 ここで、DateTime.ToLongTimeString()メソッドを実装する例を見てみましょう- using System; using System.Globalization; public class Demo {    public static void Main() {   &nbs