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
For example P2Int16 has a TryParse that takes a ReadOnlySpan. However, the function still just turns it into a string and uses substring, which allocates. The logic can be upgraded to leverage spans to have little or no allocation by using span API instead
The text was updated successfully, but these errors were encountered:
For example P2Int16 has a TryParse that takes a ReadOnlySpan. However, the function still just turns it into a string and uses substring, which allocates. The logic can be upgraded to leverage spans to have little or no allocation by using span API instead
The text was updated successfully, but these errors were encountered: