0

When do you use pointers in C#?

I just have a small question that might open bigger answers. In what cases you would use pointers in C#?

22nd Jan 2018, 2:43 PM
Akkad Saadi
Akkad Saadi - avatar
1 Answer
+ 8
Honestly speaking, I didn't know C# can utilize pointers (especially use of pointer arithmetics) as C# adopted Java's way to handle memory management (using GC) and the use of reference type is something quite similar to pointers (some say, to some extent). Your question pulled my curiosity trigger to seek for clarity, so, here's what I found from a simple search, hopefully they come worthy of reading : ) https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/unsafe-code-pointers/pointer-types https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/unsafe-code-pointers/ https://stackoverflow.com/questions/2333574/is-there-pointer-in-c-sharp-like-c-is-it-safe Hth, cmiiw
22nd Jan 2018, 3:44 PM
Ipang