Skip to content

Instantly share code, notes, and snippets.

@pigeonhands
Forked from trcio/JsonUtil.cs
Last active August 29, 2015 14:24
Show Gist options
  • Save pigeonhands/e9d472cff042cea50c6f to your computer and use it in GitHub Desktop.
Save pigeonhands/e9d472cff042cea50c6f to your computer and use it in GitHub Desktop.
using System.Runtime.Serialization.Json;
using System.IO;
using System.Text;
public static class JsonUtil
{
/// <summary>
/// Serializes an object to the respectable JSON string.
/// </summary>
public static string Serialize<T>(T o)
{
var s = new DataContractJsonSerializer(typeof(T));
using (var ms = new MemoryStream())
{
s.WriteObject(ms, o);
return Encoding.UTF8.GetString(ms.ToArray());
}
}
/// <summary>
/// Deserializes a JSON string to the specified object.
/// </summary>
public static T Deserialize<T>(string json)
{
var s = new DataContractJsonSerializer(typeof(T));
using (var ms = new MemoryStream(Encoding.UTF8.GetBytes(json)))
{
return (T)s.ReadObject(ms);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment