“应用程序配置”文件中的最大键/值长度

时间:2011-06-17 07:38:29

标签: c# configuration-files key-value maxlength

配置文件中MyKeyMyValue的最大允许长度是多少?

<configuration>
  <appSettings>
    <add key="MyKey" value="MyValue" />
  </appSettings>
</configuration>

1 个答案:

答案 0 :(得分:3)

根据知识,webconfig文件中的键值对没有限制.....

如果您打算将对象添加到配置文件,请检查此帖子将帮助您完成任务

How to store custom objects in web.config ?