ConfigurationSettings.AppSettings 已过时,警告
var values = new NameValueCollection
{
{ "key", ConfigurationSettings.AppSettings["API-Key"].ToString() },
{ "image", Convert.ToBase64String(File.ReadAllBytes(photo.ToString())) }
};
使用 app.config 文件的新方法是什么?
var values = new NameValueCollection
{
{ "key", ConfigurationSettings.AppSettings["API-Key"].ToString() },
{ "image", Convert.ToBase64String(File.ReadAllBytes(photo.ToString())) }
};
What's the new way to use the app.config file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
System.Configuration
中的ConfigurationManager
类:因此您的代码将更改为:
确保添加对
System.Configuration
的引用以及 < System.Configuration 的 code>using 语句。The
ConfigurationManager
class inSystem.Configuration
:So your code would change to:
Make sure you add a reference to
System.Configuration
along with theusing
statement forSystem.Configuration
.使用 System.Configuration.ConfigurationManager 类
编辑 - 添加
注意,您可能必须添加对 System.Configuration.dll 的引用。即使您可以在没有引用的情况下导入命名空间,除非有引用,否则您将无法访问此类。
Use the System.Configuration.ConfigurationManager class
Edit - added
Note, you may have to add a reference to System.Configuration.dll. Even if you can import the namespace without the reference, you will not be able to access this class unless you have the reference.
使用 ConfigurationManager 类
http://msdn.microsoft.com/ en-us/library/system.configuration.configurationmanager.aspx
With the ConfigurationManager class
http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.aspx
要使用的新类是 ConfigurationManager 类。
The new class to use is the ConfigurationManager class.