Skip to content

Instantly share code, notes, and snippets.

@markusdybeck
Created June 10, 2020 09:09
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 markusdybeck/f7773519cec70fe7bc1a31e14fcc0bd0 to your computer and use it in GitHub Desktop.
Save markusdybeck/f7773519cec70fe7bc1a31e14fcc0bd0 to your computer and use it in GitHub Desktop.
Simple record example
public record Point(int x, int y) {};
var point = new Point(1, 2);
point.x(); // 1
point.y(); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment