Skip to content

Instantly share code, notes, and snippets.

@jaredpar
Created July 22, 2021 17:43
Show Gist options
  • Select an option

  • Save jaredpar/3863113ecabd27345b265bc1d3470f12 to your computer and use it in GitHub Desktop.

Select an option

Save jaredpar/3863113ecabd27345b265bc1d3470f12 to your computer and use it in GitHub Desktop.
using System;
using System.Text.Json;
var r1 = new R(42, 13);
var json = JsonSerializer.Serialize(r1);
Console.WriteLine(json);
var r2 = JsonSerializer.Deserialize<R>(json);
Console.WriteLine(r2);
Console.WriteLine(r2.Equals(r1));
record R(int x, int y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment