We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
please add support for records,
now this wont do anything
[Cloneable.Cloneable] public partial record Foo(string Bar);
The text was updated successfully, but these errors were encountered:
I don't know, if you know this, but you can copy records with the with keyword:
with
Foo with {}
Sorry, something went wrong.
yes, i figured this after i posted this, but that will only do shallow copy, correct?
Correct! Records should be optimally immutable - so this should be ok, if you don't use mutable classes as properties..
No branches or pull requests
please add support for records,
now this wont do anything
The text was updated successfully, but these errors were encountered: