好的,所以这个让我有点困惑。我有以下内容:
string csvOfAttributes = CableSolve.Web.Properties.Settings.Default.GenerateBoothReportAttributes;
并在我的web.config中:
<CableSolve.Web.Properties.Settings>
<setting name="GenerateBoothReportAttributes" serializeAs="String">
<value>327, 329, 330, 369, 342</value>
</setting>
</CableSolve.Web.Properties.Settings>
我有两个问题:
答案 0 :(得分:0)
我认为答案主要包含在这个问题中:整个差异是基本的键值对模式与更复杂的模式。通过扩展,差异与弱类型与强类型以及运行时与编译时相关。一般情况下,后者更好,同样意义上.NET比Javascript“更好”:您会尽早收到错误警报,而不是让它们以不可预测和难以追踪的方式冒泡进入您的应用程序。强模式首选项的例外情况可能包括: