List Question
20 TechQA 2024-03-06T09:56:42.687000unknown function in decompiled dll
211 views
Asked by Fardin
What is an efficient equivalent in C# for Span<Span<T>>, which does not exist?
393 views
Asked by Sean Werkema
Rapid stack allocations vs accessing a single heap allocation
119 views
Asked by Damian
Can I suppress .local for stackalloc in C# without using unsafe?
397 views
Asked by kolbe
Is there a way, to conditionally allocate some fixed-size-stack buffer?
122 views
Asked by Shpendicus
Garbage data after stackalloc field initializer
142 views
Asked by Shpendicus
What is the return type of a stackalloc espression?
247 views
Asked by Nigel
What happens when I assign a `ref` value to an `out` argument in C#?
170 views
Asked by TheLeftExit
Why a `stackalloc` expression cannot be assigned to a `Span<T>` parameter?
730 views
Asked by Margaret Bloom
Why does a zero-length stackalloc make the C# compiler happy to allow conditional stackallocs?
4.1k views
Asked by Marc Gravell
Why do I have padding in the stack?
273 views
Asked by AudioBubble
How to use C# stackalloc and keep the same code structure?
938 views
Asked by KVM
Allocation-free enumeration and processing
365 views
Asked by bboyle1234
Should this unsafe code work also in .NET Core 3?
2.3k views
Asked by György Kőszeg
Is it necessary to use `stackalloc` only in the same line you define the pointer to it?
169 views
Asked by Minimus Heximus
Using Span produces an exception in VS 2019
184 views
Asked by Minimus Heximus
Reinterpret C# raw buffer into a blittable structure
525 views
Asked by Jämes
How to read the element count of stack allocated memory?
111 views
Asked by greenoldman