0
我的應用程序有兩種語言:英語和法語。 英文存儲在Global.resx文件中 法文存儲在Global.fr.resx文件中如何以編程方式訪問特定的資源文件?
我正在使用這些資源文件中的數據編寫雙語電子郵件通知。
如何在編寫法語版本時以編程方式訪問Global.fr.resx的內容?
我的應用程序有兩種語言:英語和法語。 英文存儲在Global.resx文件中 法文存儲在Global.fr.resx文件中如何以編程方式訪問特定的資源文件?
我正在使用這些資源文件中的數據編寫雙語電子郵件通知。
如何在編寫法語版本時以編程方式訪問Global.fr.resx的內容?
Dim SelectedCulture As String = "fr-CA"
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(SelectedCulture)
Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture
'Code will now retrieve from the French resource file
Dim AppName as string= Resources.Strings.AppName