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
Separated out of https://github.com/dotnet/corefx/issues/21281 for tracking purposes.
namespace System.Numerics { public struct BigInteger { public BigInteger(ReadOnlySpan<byte> value); public int GetByteCount(); public bool TryWriteBytes(Span<byte> destination, out int bytesWritten); public static BigInteger Parse(ReadOnlySpan<char> value, NumberStyles style = NumberStyles.Integer, IFormatProvider provider = null); public static bool TryParse(ReadOnlySpan<char> value, out BigInteger result, NumberStyles style = NumberStyles.Integer, IFormatProvider provider = null); public static bool TryFormat(Span<char> destination, out int charsWritten, string format = null, IFormatProvider provider = null); … } }
The text was updated successfully, but these errors were encountered:
When do you think this will reach the big .NET Framework?
Sorry, something went wrong.
The question on everyone's minds... (at least until .NET Core 3 comes out!)
stephentoub
No branches or pull requests
Separated out of https://github.com/dotnet/corefx/issues/21281 for tracking purposes.
The text was updated successfully, but these errors were encountered: