##// END OF EJS Templates
addded ServiceHost tests, updated project targets
addded ServiceHost tests, updated project targets

File last commit:

r289:95896f882995 v3.0.14 v3
r299:d54174bbd6c4 tip default
Show More
XmlDefaultSerializer.cs
13 lines | 581 B | text/x-csharp | CSharpLexer
/ Implab / src / Xml / XmlDefaultSerializer.cs
using System.Xml.Serialization;
using Implab.Components;
namespace Implab.Xml {
/// <summary>
/// This class used to get default serializer for the specified type <typeparamref name="T"/>.
/// </summary>
/// <typeparam name="T">The type used to create <see cref="XmlSerializer"/></typeparam>
public static class XmlDefaultSerializer<T> {
static readonly LazyAndWeak<XmlSerializer> m_instance = new LazyAndWeak<XmlSerializer>(() => new XmlSerializer(typeof(T)));
public static XmlSerializer Instance { get { return m_instance.Value; } }
}
}