How to get type of class without initiating object?
The consturctor of System.Xml.Serialization.XmlSerial need the type of the class I want to serialize.
instance = New AnyClass()
Dim xmlszer As New XmlSerializer(instance.G开发者_运维百科etType)
No problem. But how can I get the type of AnyClass without initiating?
Try this:
Dim xmlszer As New XmlSerializer(GetType(AnyClass))
GetType Operator:
Returns a
Type
object for the specified type. TheType
object provides information about the type such as its properties, methods, and events.
Try this instead ;)
Dim xmlszer As New XmlSerializer(GetType(MyClass))
精彩评论