1. 程式人生 > 實用技巧 >關於專案翻譯中出現的前面能夠拿到翻譯資訊,後面拿不到的情況

關於專案翻譯中出現的前面能夠拿到翻譯資訊,後面拿不到的情況

var curlanguage = EastSim.NetTrmp.Resources.ResourcesLoad.SysLanguage;
Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(curlanguage);

1.先拿到當前的cookie資訊資料;

2.建立執行緒,後取到特定區域的資訊資料,以此解決問題;

相關:

        //
        // 摘要:
        //     獲取或設定資源管理器使用的當前區域性以便在執行時查詢區域性特定的資源。
        //
        //
返回結果: // System.Globalization.CultureInfo,它表示當前區域性。 // // 異常: // T:System.ArgumentNullException: // 該屬性設定為 null。 // // T:System.ArgumentException: // 此屬性被設定為不能用於定位資原始檔的區域性名稱。資原始檔名只能包含字母、數字、連字元或下劃線。 public CultureInfo CurrentUICulture { get
; set; }

        //
        // 摘要:
        //     使用特定的區域性名稱檢索某個區域性的快取的只讀例項。
        //
        // 引數:
        //   name:
        //     區域性的名稱。
        //
        // 返回結果:
        //     一個只讀 System.Globalization.CultureInfo 物件。
        //
        // 異常:
        //   T:System.ArgumentNullException:
        //     name 為 null。
        
// // T:System.ArgumentException: // name 指定不支援的區域性。 public static CultureInfo GetCultureInfo(string name);