Exemple #1
0
 /// <summary>
 /// <paramref name="period"/>를 문자열로 표현합니다.
 /// </summary>
 /// <param name="period"></param>
 /// <returns></returns>
 public static string AsString(this ITimePeriod period)
 {
     return((period == null) ? NullString : period.GetDescription(TimeFormatter.Instance));
 }