GetLocaleInfo

    GetLocaleInfo - System의 국가별지역 정보

    GetLocaleInfo함수는 현재 Windows에 설정되어 있는 국가/지역에 대한 다양한 정보를 확인할 수 있는 함수입니다. Declare Function GetLocaleInfo Lib "kernel32" Alias "GetLocaleInfoA" (ByVal Locale As Integer, ByVal LCType As Integer, ByVal lpLCDate As String, ByVal cchData As Integer) As Integer ▶VB.NET 선언 Dim sbuff As String = Space(10) GetLocaleInfo(locale, type, sbuff, data) ▶VB.NET 호출 [DllImport("kernel32.dll")] public static extern ..