Skip to content

Instantly share code, notes, and snippets.

@bronumski
Created June 10, 2013 13:39
Show Gist options
  • Save bronumski/5748758 to your computer and use it in GitHub Desktop.
Save bronumski/5748758 to your computer and use it in GitHub Desktop.
public static class Deserialize
{
public static TResponse Deserialize<TResponse>(string xmlString)
{
var serializer = new XmlSerializer(typeof(TResponse));
using (var stringReader = new StringReader(xmlString))
{
return (TResponse)serializer.Deserialize(stringReader);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment