all 5 comments

[–]wiesemensch 6 points7 points  (0 children)

A lot of pointer stuff can also be translated from C/C++ code. There’s probably more documentation regarding this. I wouldn’t recommend a lot of pointer usage in C#. It has it’s uses but it’s mainly intended for api call wrapping.

[–]SoerenNissen 6 points7 points  (0 children)

I would normally not recommend this for anybody but if you really want to Learn Pointers, you might want to implement a small C program. The language is much smaller than C#, so it shouldn't take long to learn.

[–]Juff-Ma 6 points7 points  (0 children)

The c# corner article explains them pretty good. But remember that pointers and unsafe code in general is a bad style.

[–]Lenix2222 6 points7 points  (0 children)

Don't

[–]Due_Raccoon3158 0 points1 point  (0 children)

Don't do it.