本文整理汇总了VB.NET中System.Xml.Serialization.XmlArrayAttribute.XmlArrayAttribute构造函数的典型用法代码示例。如果您正苦于以下问题:VB.NET XmlArrayAttribute构造函数的具体用法?VB.NET XmlArrayAttribute怎么用?VB.NET XmlArrayAttribute使用的例子?那么恭喜您, 这里精选的构造函数代码示例或许可以为您提供帮助。您也可以进一步了解该构造函数所在类System.Xml.Serialization.XmlArrayAttribute
的用法示例。
在下文中一共展示了XmlArrayAttribute构造函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: MyClass1
Public Class MyClass1
<XmlArrayAttribute()> Public MyStringArray() As String
<XmlArrayAttribute()> Public MyIntegerArray() As Integer
End Class
示例2: MyClass1
Option Explicit
Option Strict
Imports System.IO
Imports System.Xml
Imports System.Xml.Serialization
Public Class MyClass1
<XmlArrayAttribute("MyStrings")> _
Public MyStringArray() As String
<XmlArrayAttribute(ElementName := "MyIntegers")> _
Public MyIntegerArray() As Integer
End Class
Public Class Run
Public Shared Sub Main()
Dim test As New Run()
test.SerializeObject("MyClass.xml")
End Sub
Public Sub SerializeObject(ByVal filename As String)
' Creates a new instance of the XmlSerializer class.
Dim s As New XmlSerializer(GetType(MyClass1))
' Needed a StreamWriter to write the file.
Dim myWriter As New StreamWriter(filename)
Dim class1 As New MyClass1()
' Creates and populates a string array, then assigns
' it to the MyStringArray property.
Dim myStrings() As String = {"Hello", "World", "!"}
class1.MyStringArray = myStrings
' Creates and populates an integer array, and assigns
' it to the MyIntegerArray property.
Dim myIntegers() As Integer = {1, 2, 3}
class1.MyIntegerArray = myIntegers
' Serializes the class, and writes it to disk.
s.Serialize(myWriter, class1)
myWriter.Close()
End Sub
End Class