-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
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
Add articles on record structs #25484
Comments
To address this issue, the following tasks must be completed:
|
Fix #24681 in the same PR as this issue. |
Note that now all struct types support |
@BillWagner #26100 takes care of that. |
C# 10 adds
record struct
types. These types follow value semantics (as all value types do). The compiler generates many of the same methods as it does forrecord
types. Some aren't applicable because they are only needed to support inheritance forrecord
types.In addition,
record
types can be declared asrecord class
types to avoid potential confusion withrecord struct
types.Feature specification: Record structs
The text was updated successfully, but these errors were encountered: