Skip to content

Instantly share code, notes, and snippets.

@facundofarias
Created February 26, 2019 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save facundofarias/fd05c54c5097e5c6a683013f674f48fd to your computer and use it in GitHub Desktop.
Save facundofarias/fd05c54c5097e5c6a683013f674f48fd to your computer and use it in GitHub Desktop.
Best ToString method on .NET Core
using Newtonsoft.Json;
...
public override string ToString()
{
return JsonConvert.SerializeObject(this);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment