c#获取系统语言及版本信息
摘要://当前操作系统是否为简体中文public static bool IsChineseSimple(){ return System.Threading.Thread.CurrentThread.CurrentCulture.Name == "zh-CN";}//当前操作系统是否为繁体中文public static bool IsChineseTW(){ return System.Threading.Thread.CurrentThread.CurrentCulture.Name == "Zh-TW";}//当前操作系统是否为英语(美国)public
阅读全文
posted @ 2012-11-27 11:20