c#-“应用程序配置”文件中的最大键/值长度
作者:互联网
配置文件中MyKey和MyValue的最大允许长度是多少?
<configuration>
<appSettings>
<add key="MyKey" value="MyValue" />
</appSettings>
</configuration>
解决方法:
据了解,webconfig文件中的键值对没有限制.
如果您打算将对象添加到配置文件中,请查看这篇文章,以帮助您完成任务
How to store custom objects in web.config ?
标签:maxlength,key-value,configuration-files,c 来源: https://codeday.me/bug/20191208/2090223.html