using System.Xml.Serialization; using System.Text; public class SerializeManager { public static XmlDocument Serialize(Type type, Object source) { MemoryStream stream = null; TextWriter writer = null; XmlDocument document = null; try { stream = new MemoryStream(); writer = new StreamWriter(stream, Encoding.Unicode); XmlSerializer serializer = new XmlSerializer(type); serializer.Serialize(writer, source); int count = (int)stream.Length; byte[] array = new byte[count]; stream.Seek(0, SeekOrigin.Begin); stream.Read(array, 0, count); UnicodeEncoding utf = new UnicodeEncoding(); document = new XmlDocument(); document.LoadXml(utf.GetString(array).Trim()); } catch { throw; } finally { if (stream != null) stream.Close(); if (writer != null) writer.Close(); } return document; } }
Wednesday, July 01, 2009
Generic Serialization Method - Microsoft C#.NET
Subscribe to:
Post Comments (Atom)
Azure Storage Account Types
Defferent Types of Blobs Block blobs store text and binary data. Block blobs are made up of blocks of data that can be managed individually...
-
Why we need asynchronous tasks? Execute a time consuming operations in parallel to the CLR thread which execute the request If you have ...
-
Demo: I was thinking a way to show images before actually uploading them to server. I would say to preview images using javascript. Obv...
No comments:
Post a Comment