개발/C#17 C# 파일사이즈 Long -> String 변환 public static string GetFileSize(long size) { if(size 2022. 1. 6. ASP.net 클라이언트IP 얻기 public static string GetClientIP() { try { HttpContext hc = HttpContext.Current; if (hc == null) return string.Empty; string ipList = hc.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (!string.IsNullOrWhiteSpace(ipList)) { return ipList.Split(',')[0]; } return hc.Request.ServerVariables["REMOTE_ADDR"]; } catch(Exception ex) { Console.Write(ex.ToString()); } return string.Empty; } 2022. 1. 6. c# 양력 -> 음력 변환 namespace HelloWorld { class Program { static void Main(string[] args) { // 양력 -> 음력 DateTime date = new DateTime(2021, 2, 17); Console.WriteLine($"DateFormat: {ToLunarDateTime(date).ToString("yyyy-MM-dd")}"); } // 양력 -> 음력 변환 public static DateTime ToLunarDateTime(DateTime date) { int leapMonth; int lunarYear; int lunarMonth; int lunarDay; System.Globalization.KoreanLunisolarCalendar lunar = ne.. 2021. 12. 5. C# 자주쓰는 ToString 변환 자주쓰는 ToString 변환입니다. // 날짜포멧 DateTime date = DateTime.Now; Console.WriteLine($"DateFormat: {date.ToString("yyyy-MM-dd")}"); Console.WriteLine($"DateFormat: {date.ToString("yyyy-MM-dd HH:mm:ss")}"); // 통화 콤마찍기 int currency = 15000; Console.WriteLine($"통화콤마찍기: {currency.ToString("n0")}"); 결과 2021. 11. 25. 이전 1 2 3 4 5 다음 반응형