-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Fix example output of BigInteger(Int64)
#11035
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
Fix example output of BigInteger(Int64)
#11035
Conversation
Learn Build status updates of commit 0acaa28: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
Learn Build status updates of commit a943054: ✅ Validation status: passedFor more details, please refer to the build report. For any questions, please:
|
Learn Build status updates of commit 06d30e8: ✅ Validation status: passedFor more details, please refer to the build report. For any questions, please:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This LGTM @Rageking8
I did make a couple small suggestions to use .NET 9 instead of .NET 6. Then, I'll merge this.
snippets/csharp/System.Numerics/BigInteger/.ctor/Project.csproj
Outdated
Show resolved
Hide resolved
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same:
<TargetFramework>net6.0</TargetFramework> | |
<TargetFramework>net9.0</TargetFramework> | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the extra newline here intentional?
Learn Build status updates of commit 2c529c8: ✅ Validation status: passedFor more details, please refer to the build report. For any questions, please:
|
Summary
Fix output of example for
BigInteger(Int64)
constructor.Fixes #10346.