C# - Decimal을 Hex로 변환 4월 16, 2019 string result = ""; foreach ( Match m in (new Regex(@"[0-9A-F]{2,2}", RegexOptions.IgnoreCase)).Matches(hex)) result += ((char)Convert.ToInt32(m.Value, 16)).ToString(); return result; 자세한 내용 보기
C# - TextBox에 영문자만 입력 가능하도록 설정 4월 16, 2019 txt_batchB.ImeMode = System.Windows.Forms.ImeMode.Alpha; 자세한 내용 보기