本文介绍了如何按xml的物理顺序读取用户属性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用C#Framework v4.5 +
在WinForm应用程序上我正在尝试:
foreach( Properties.Settings.Default.Properties中的SettingsProperty数据为IEnumerable)
{
MessageBox(Name =(+ data.Name +)\ n\\\
Value =(+ data.DefaultValue +));
}
但它不按物理顺序读取......
我需要尊重XML文件的顺序。
对不起我的英文;-)
谢谢!
I'm using C# Framework v4.5+
On a WinForm App I'm trying to do:
foreach(SettingsProperty data in Properties.Settings.Default.Properties as IEnumerable)
{
MessageBox("Name = (" + data.Name + ")\n\nValue = (" + data.DefaultValue + ")");
}
But it's not reading in physical order...
I need that respect the order of the XML file.
Sorry for my english ;-)
Thanks!
推荐答案
这篇关于如何按xml的物理顺序读取用户属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!