예제 #1
0
파일: _Locale.cs 프로젝트: bruce66tw/Base
 /// <summary>
 /// get locale code, ex: zh-TW
 /// also called by _Layout.cshtml
 /// </summary>
 /// <returns></returns>
 public static string GetLocale()
 {
     //return Thread.CurrentThread.CurrentCulture.Name;
     return((_localeService == null) ? _Fun.GetBaseUser().Locale : _localeService.GetLocale());
 }