전자실 report 초안 완료

This commit is contained in:
chi
2021-01-29 21:52:17 +09:00
parent 31d58df5fc
commit 0da91d90a9
16 changed files with 879 additions and 482 deletions

View File

@@ -145,6 +145,12 @@ namespace FPJ0000
return string.IsNullOrEmpty(input);
}
public static Boolean isDate(this string input)
{
DateTime v;
return DateTime.TryParse(input, out v);
}
/// <summary>
/// default 인코딩을 사용하여 문자열로 반환합니다.
/// </summary>