Перейти к содержимому

Stackalloc and Spans

Coding Tutorials

0:00 / 0:00

Stackalloc and Spans

16 377 просмотров · 3 года назад
Coding Tutorials
16,5 тыс. подписчиков
16 377 просмотров · 3 года назад
Allocating memory on the heap can slow a program down by creating work for the .NET garbage collector. In C# we can improve performance by using the stack instead. Source code available at: https://github.com/JasperKent/Spans-a... Topics include: Referencing contiguous memory with Span and ReadOnlySpan Allocating on the stack with stackalloc Writing high performance methods with zero heap allocation Avoiding the need for unsafe code Fast text parsing