本文整理汇总了C#中System.Xml.Serialization.XmlArrayAttribute.XmlArrayAttribute构造函数的典型用法代码示例。如果您正苦于以下问题:C# XmlArrayAttribute构造函数的具体用法?C# XmlArrayAttribute怎么用?C# XmlArrayAttribute使用的例子?那么恭喜您, 这里精选的构造函数代码示例或许可以为您提供帮助。您也可以进一步了解该构造函数所在类System.Xml.Serialization.XmlArrayAttribute
的用法示例。
在下文中一共展示了XmlArrayAttribute构造函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1:
public class MyClass
{
[XmlArrayAttribute()]
public string [] MyStringArray;
[XmlArrayAttribute()]
public int [] MyIntegerArray;
}
示例2: Main
//引入命名空间
using System;
using System.IO;
using System.Xml;
using System.Xml.Serialization;
public class MyClass{
[XmlArrayAttribute("MyStrings")]
public string [] MyStringArray;
[XmlArrayAttribute(ElementName = "MyIntegers")]
public int [] MyIntegerArray;
}
public class Run{
public static void Main()
{
Run test = new Run();
test.SerializeObject("MyClass.xml");
}
public void SerializeObject(string filename)
{
// Creates a new instance of the XmlSerializer class.
XmlSerializer s = new XmlSerializer(typeof(MyClass));
// Needs a StreamWriter to write the file.
TextWriter myWriter= new StreamWriter(filename);
MyClass myClass = new MyClass();
// Creates and populates a string array, then assigns
// it to the MyStringArray property.
string [] myStrings = {"Hello", "World", "!"};
myClass.MyStringArray = myStrings;
/* Creates and populates an integer array, and assigns
it to the MyIntegerArray property. */
int [] myIntegers = {1,2,3};
myClass.MyIntegerArray = myIntegers;
// Serializes the class, and writes it to disk.
s.Serialize(myWriter, myClass);
myWriter.Close();
}
}