-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Where is System.UInt128? #75924
Comments
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label. |
Tagging subscribers to this area: @dotnet/area-system-numerics Issue DetailsDescriptionAccording to https://learn.microsoft.com/en-us/dotnet/api/system.uint128?view=net-7.0 and dotnet/core#7454 there is a new type However, with Configuration.NET 7.0.100-rc.1.22431.12
|
What does your csproj look like? |
I found the problem: I still had a PackageReference to System.Runtime.Experimental. Sorry for disturbing you with the question I could have answered myself 🤯 |
Glad you got it sorted out. |
Description
According to https://learn.microsoft.com/en-us/dotnet/api/system.uint128?view=net-7.0 and dotnet/core#7454 there is a new type
public readonly struct UInt128
in the System namespaceHowever, with
System.UInt128 x;
I get the error
The type or namespace name 'UInt128' does not exist in the namespace 'System'
when running
dotnet build
Configuration
.NET 7.0.100-rc.1.22431.12
The text was updated successfully, but these errors were encountered: