私は mvc3 で c# で .net を使用しています。Web.Config 設定があります。
>の値を取得する必要があります<add key="sitelocalization" value="en-GB" /
。
次のコードでは、このエラーが発生します。
String reference not set to an instance of a String.
Parameter name: name
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentNullException: String reference not set to an instance of a String.
Parameter name: name
この行で Thread.CurrentThread.CurrentUICulture = new CultureInfo(localization);
<appSettings>
<add key="webpages:Enabled" value="false" />
<add key="sitelocalization" value="en-GB" />
</appSettings>
string localization = WebConfigurationManager.AppSettings["sitelocalization"];
Thread.CurrentThread.CurrentUICulture = new CultureInfo(localization);
Thread.CurrentThread.CurrentCulture = new CultureInfo(localization);