Re: XML Deserialization |
| Chirag Bhavsar replied to Stanley Tweedle at 10-May-08 02:06 |
HI! stanley
You may try this code snip this may help you.
Imports System.Xml.Serialization
'Deserialize text file to a new object. Dim objStreamReader As New StreamReader("C:\Product.xml") Dim p2 As New InvestmentHolding() p2 = x.Deserialize(objStreamReader) objStreamReader.Close()
Refer link http://support.microsoft.com/kb/316730 may this can help you understand |
|