Re: Does C#.net support Pointers?
Hello,
C#.net doesnt support pointers directly because the security purpose.
Only unsafe code and pointers enable C# to be used to make applications that you may usually connect with C++: high-performance, systems code. In addition, the insertion of unsafe code and pointers provide C# capabilities that are missing in Java.
|