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

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


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

構文

以下は構文です-

public string ToShortDateString ();

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

using System;
public class Demo {
   public static void Main() {
      DateTime d = new DateTime(2019, 08, 11, 9, 10, 45);
      Console.WriteLine("Date = {0}", d);
      string str = d.ToShortDateString();
      Console.WriteLine("Short date string representation = {0}", str);
   }
}

出力

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

Date = 8/11/2019 9:10:45 AM
Short date string representation = 8/11/2019

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

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.ToShortDateString();
      Console.WriteLine("Short date string = {0}", pattern.ShortDatePattern);
      Console.WriteLine("Short date string representation = {0}", str);
   }
}

出力

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

Date = 10/16/2019 8:56:40 AM
Current culture = en-US
Short date string = M/d/yyyy
Short date string representation = 10/16/2019

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

    C#のDateTime.AddYears()メソッドは、指定された年数をこのインスタンスの値に追加するために使用されます。新しいDateTimeを返します。 構文 以下は構文です- public DateTime AddYears (int yrs); 上記では、年は追加される年です。年を引く場合は、負の値を使用します。 例 ここで、DateTime.AddYears()メソッドを実装する例を見てみましょう- using System; public class Demo {    public static void Main(){     &n

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

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