728x90 C#2 C# 나이 계산 만나이 계산 private static int GetAge(string sNoBirth, DateTime dtAge) { int iAge = 0; DateTime dttime = DateTime.ParseExact(sNoBirth, "yyyyMMdd", null); DateTime dtnow = DateTime.Now; int birth_year = dttime.Year; int birth_month = dttime.Month; int birth_day = dttime.Day; int now_year = dtnow.Year; int now_month = dtnow.Month; int now_day = dtnow.Day; if (birth_month < now_month) iAge = now_year - birth_y.. 2019. 11. 12. c# 외부 응용 프로그램 호출 Process.start C# 에서 외부 응용 프로그램을 호출하는 방법입니다. 맨먼저 using System.Diagnostics; 를 사용하면 System.Diagnostics.Process.Start() 대신 Process.Start() 로 글을 줄일 수 있습니다 특정 폴더 열기 System.Diagnostics.Process.Start("explorer.exe", "C:\temp"); 특정 사이트 열기 System.Diagnostics.Process.Start("explorer.exe", http://www.naver.com); 윈도우를 종료 System.Diagnostics.Process.Start("cmd.exe","shutdown.exe -s -f -t 01"); 윈도우를 재부팅 System.Diagnostics.Pr.. 2013. 4. 20. 이전 1 다음 728x90