Exemple #1
0
 /// <summary>
 /// <paramref name="dateTime"/>을 Long Time 형식의 문자열로 표현합니다.
 /// </summary>
 public string GetLongTime(DateTime dateTime)
 {
     return(LongTimeFormat.IsNotWhiteSpace()
                ? dateTime.ToString(LongTimeFormat)
                : dateTime.ToLongTimeString());
 }