The text of this article is not in this database — only its details are. Read it on the old site: Serialization in VB and .net
3 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: Serialization in VB and .net
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
Ahmad FarmanPosted May 25, 2010, 2:53 PM
Hi, I am using serialize () to write to a text file. I am passing serializable class object & an input file stream as parameters but when i open the text file i get a junky display containing some portion of input correct . Please have look at the output below. ******************************************** ÿÿÿÿ CSerialFiling, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null SerialFiling.CRecord maccount mfirstname mlastname ************************************ any suggestions how to correct this issue? Thanks.
RodrigoPosted Jun 17, 2009, 6:06 PM
¿And how about the Nothing (Null) elements cast to Integer values when deserialize a xml? Example if the element is defined as Integer or double, an exception is thrown <ages> <age>10</age> <age>3</age> <age/> <age/> </ages> Any work about this? Thanks in advantage.