Skip to content

Instantly share code, notes, and snippets.

@kidchenko
Forked from imranbaloch/Mapper.cs
Created April 25, 2018 03:07
Show Gist options
  • Save kidchenko/59b9de5bf6022fb72013719f116547c6 to your computer and use it in GitHub Desktop.
Save kidchenko/59b9de5bf6022fb72013719f116547c6 to your computer and use it in GitHub Desktop.
Simple Mapper
public static class Mapper
{
public static T2 Map<T1, T2>(T1 t1)
{
var json = JsonConvert.SerializeObject(t1);
return JsonConvert.DeserializeObject<T2>(json);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment