-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Add UnionAttribute and IUnion interface to System.Runtime.CompilerServices #127001
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
Merged
eiriktsarpalis
merged 11 commits into
main
from
copilot/add-union-attribute-and-iuunion-interface
Apr 17, 2026
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
2ce8283
Initial plan
Copilot 14dfeba
Add UnionAttribute and IUnion interface to System.Runtime.CompilerSer…
Copilot 68ee32d
Apply suggestion from @eiriktsarpalis
eiriktsarpalis a037949
Add comprehensive XML documentation for UnionAttribute and IUnion
Copilot 1b5fa60
Document Value property per language spec; seal UnionAttribute in ref…
Copilot c2d4e07
Update src/libraries/System.Private.CoreLib/src/System/Runtime/Compil…
eiriktsarpalis 6d1d2bc
Remove proposal links and simplify XML docs to avoid naming specific …
Copilot 44d9a8f
Manual cleanup of XML comments
eiriktsarpalis ed25811
Remove IUnionTests and TestUnion test class per review feedback
Copilot 798d7ab
Fix IUnion XML docs: implementing interface is not required for union…
Copilot 041b73a
Change UnionAttribute Inherited to false — derived types aren't union…
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
28 changes: 28 additions & 0 deletions
28
src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/IUnion.cs
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
|
|
||
| namespace System.Runtime.CompilerServices | ||
| { | ||
| /// <summary> | ||
| /// Provides a common interface for accessing the contents of a union type at runtime. | ||
| /// </summary> | ||
| /// <remarks> | ||
| /// <para> | ||
| /// The C# compiler automatically implements this interface on types generated by union declarations. | ||
| /// User-defined types annotated with <see cref="UnionAttribute" /> may also implement this interface | ||
| /// to provide runtime access to the union's value. Implementing this interface is not required | ||
| /// for union behaviors provided by the compiler. | ||
| /// </para> | ||
| /// </remarks> | ||
| /// <seealso cref="UnionAttribute" /> | ||
| public interface IUnion | ||
| { | ||
| /// <summary> | ||
| /// Gets the value contained in the union, or <see langword="null" /> if the union has no value. | ||
| /// </summary> | ||
| /// <value> | ||
| /// The current value of the union as one of its case types, or <see langword="null" />. | ||
| /// </value> | ||
| object? Value { get; } | ||
| } | ||
| } | ||
21 changes: 21 additions & 0 deletions
21
src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/UnionAttribute.cs
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
|
|
||
| namespace System.Runtime.CompilerServices | ||
| { | ||
| /// <summary> | ||
| /// Indicates that a class or struct is a union type, enabling compiler support for union behaviors. | ||
| /// </summary> | ||
| /// <remarks> | ||
| /// <para> | ||
| /// Any class or struct annotated with this attribute is recognized by the C# compiler as a union type. | ||
| /// Union types may support behaviors such as implicit conversions from case types, pattern matching | ||
| /// that unwraps the union's contents, and switch exhaustiveness checking. | ||
| /// </para> | ||
| /// </remarks> | ||
|
eiriktsarpalis marked this conversation as resolved.
|
||
| /// <seealso cref="IUnion" /> | ||
| [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = false)] | ||
| public sealed class UnionAttribute : Attribute | ||
| { | ||
| } | ||
| } | ||
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.