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
Current Behaviour: the packets are lots of small classes, which will be allocated on the heap, and lead to bad GC.
Desired Behaviour: switch to structs so we use the stack more often. We also might be able to take advantage of the stackalloc keyword with arrays maybe? https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/stackalloc
stackalloc
The text was updated successfully, but these errors were encountered:
@ChrisGora has coronavirus
Sorry, something went wrong.
liamdalg
ChrisGora
No branches or pull requests
Current Behaviour: the packets are lots of small classes, which will be allocated on the heap, and lead to bad GC.
Desired Behaviour: switch to structs so we use the stack more often. We also might be able to take advantage of the
stackalloc
keyword with arrays maybe? https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/stackallocThe text was updated successfully, but these errors were encountered: