Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
dotnet
/
runtime
Public
Notifications
You must be signed in to change notification settings
Fork
5.6k
Star
18.2k
Code
Issues
5k+
Pull requests
556
Discussions
Actions
Projects
Security and quality
67
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Format/Parse binary from/to BigInteger
- #85392
#85392
Merged
tannergooding
merged 18 commits into
dotnet:main
dotnet/runtime:main
from
lateapexearlyspeed:lateapexearlyspeed-FormatAndParseBinaryForBigInteger
lateapexearlyspeed/runtime:lateapexearlyspeed-FormatAndParseBinaryForBigInteger
Copy head branch name to clipboard
Oct 12, 2023
Conversation
Commits
18
(18)
Checks
Files changed
Merged
Format/Parse binary from/to BigInteger
#85392
tannergooding
merged 18 commits into
dotnet:main
dotnet/runtime:main
from
lateapexearlyspeed:lateapexearlyspeed-FormatAndParseBinaryForBigInteger
lateapexearlyspeed/runtime:lateapexearlyspeed-FormatAndParseBinaryForBigInteger
Copy head branch name to clipboard
Commits
Commits on Apr 26, 2023
Initial draft commit: add FormatBigIntegerToBin().
lateapexearlyspeed
committed
3c127ea
View commit details
Copy full SHA for 3c127ea
Browse repository at this point
Commits on Apr 28, 2023
Fix comment: use '?:' to assign ValueStringBuilder variable to make it 'unsafe to return' so that can assign stackalloced.
lateapexearlyspeed
committed
64a0ead
View commit details
Copy full SHA for 64a0ead
Browse repository at this point
Commits on Apr 29, 2023
Refine FormatBigIntegerToBin(); and consider chars overflow scenario.
lateapexearlyspeed
committed
4216498
View commit details
Copy full SHA for 4216498
Browse repository at this point
Commits on May 15, 2023
Update Format code for final binary format definition.
lateapexearlyspeed
committed
1bcf7f8
View commit details
Copy full SHA for 1bcf7f8
Browse repository at this point
Commits on May 23, 2023
Refine FormatBigIntegerToBin().
lateapexearlyspeed
committed
63923da
View commit details
Copy full SHA for 63923da
Browse repository at this point
Commits on May 25, 2023
consider case where output is span
lateapexearlyspeed
committed
19c701d
View commit details
Copy full SHA for 19c701d
Browse repository at this point
Commits on May 27, 2023
Turn to use try..finally to return array pool.
lateapexearlyspeed
committed
56e701f
View commit details
Copy full SHA for 56e701f
Browse repository at this point
Initial add method BinNumberToBigInteger().
lateapexearlyspeed
committed
817c58c
View commit details
Copy full SHA for 817c58c
Browse repository at this point
Commits on May 30, 2023
Update FormatProvider.Number.cs to support AllowBinarySpecifier.
lateapexearlyspeed
committed
24d88c7
View commit details
Copy full SHA for 24d88c7
Browse repository at this point
Use BinNumberToBigInteger().
lateapexearlyspeed
committed
5a90e15
View commit details
Copy full SHA for 5a90e15
Browse repository at this point
Add tests of Format.
lateapexearlyspeed
committed
3987f71
View commit details
Copy full SHA for 3987f71
Browse repository at this point
Commits on Jun 1, 2023
Add tests of Parse().
lateapexearlyspeed
committed
8b58eb7
View commit details
Copy full SHA for 8b58eb7
Browse repository at this point
Improve Format(): use ValueStringBuilder just as wrapper for destination span, so to save extra buffer allocation and copy in ValueStringBuilder.
lateapexearlyspeed
committed
6cea91a
View commit details
Copy full SHA for 6cea91a
Browse repository at this point
Commits on Jun 2, 2023
Fix comment: use ch == '0' || ch == '1'
lateapexearlyspeed
committed
3007b48
View commit details
Copy full SHA for 3007b48
Browse repository at this point
Commits on Aug 25, 2023
Fix comment: refactor ParseNumber() to extract common abstract operations for previous Hex and new Binary.
lateapexearlyspeed
committed
cd0a03d
View commit details
Copy full SHA for cd0a03d
Browse repository at this point
Commits on Sep 1, 2023
Fix comment: refine naming; make BinNumberToBigInteger() general pattern similar as HexNumberToBigInteger's
lateapexearlyspeed
committed
f22d2e9
View commit details
Copy full SHA for f22d2e9
Browse repository at this point
Commits on Sep 15, 2023
Fix comment: use internal 'kcbitUint'.
lateapexearlyspeed
committed
17434aa
View commit details
Copy full SHA for 17434aa
Browse repository at this point
Commits on Oct 5, 2023
Fix comment: rename 'Bin' method names to 'Binary' ones; remove unnecessary Slice().
lateapexearlyspeed
committed
bdfddf5
View commit details
Copy full SHA for bdfddf5
Browse repository at this point
You can’t perform that action at this time.