datetime クラス : ShortDate ゲッタ

説明

日付部分の短い形式の文字列表現を取得します。

構文

datetimeInstance.ShortDate

引数

無し。

返り値

クラス説明
string日付部分の短い形式の文字列表現。

サンプルコード

1:

datetime dt = new datetime(2016, 3, 4, 4, 13, 0);

2:

string shortDate = dt.ShortDate; // 私の環境では、"2016/03/04".

注意

これは、System.DateTime.ToShortDateString() メソッドのラッパーです。

参照リンク

Copyright © Cooker All rights reserved.