Quote:
Originally posted by hellswraith
I think you are wrong. Most people, probably around the 99% mark, that use C# won't even touch pointers. This is one of the huge benifits of C#. If you need lightning speed on something, you should be using a language that allows lightning speed to happen without jumping through hoops to get it. C++ would come to mind. Then, call your C++ code from C# that way you can do all the other stuff that doesn't require that speed easily.
C# was designed so you don't need pointers. Sure, they allow you to use them, but they are not recommended because when you start using them, you eliminate all the pluses to the language.
Just my opinion though. If more speed is what you require than what C# can provide you, C++ or Assembly should be what you are looking at.
My thoughts exactly..