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.GetType)
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With