Mega Code Archive
Create XmlQualifiedName
Option Explicit On
Option Strict On
Imports System
Imports System.Xml
Imports System.Xml.Schema
Class XMLSchemaExamples
Public Shared Sub Main()
Dim schema As New XmlSchema()
Dim catRef As New XmlSchemaElement()
catRef.RefName = New XmlQualifiedName("cat")
End Sub
End Class