标签: c# configuration-files key-value maxlength
配置文件中MyKey和MyValue的最大允许长度是多少?
MyKey
MyValue
<configuration> <appSettings> <add key="MyKey" value="MyValue" /> </appSettings> </configuration>
答案 0 :(得分:3)
根据知识,webconfig文件中的键值对没有限制.....
如果您打算将对象添加到配置文件,请检查此帖子将帮助您完成任务
How to store custom objects in web.config ?