Created
February 26, 2019 16:39
-
-
Save facundofarias/fd05c54c5097e5c6a683013f674f48fd to your computer and use it in GitHub Desktop.
Best ToString method on .NET Core
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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