I want to know if pointers exist in .NET technology. If yes, is there any example for pointers in C#?
Please guide me .
|
|
Yes, they do exist... And an example of their use... |
|||
|
|
|
Yes, pointers exist. References are actually pointers, but they are special in the way that the garbage collector knows about them and changes them when it moves objects around. Pointers can be used in unsafe code, but then you have to make sure that the garbage collector doesn't move things around that you are pointing at. Example:
Note that a managed object that you want to access via a pointer has to be protected from being moved by using the You need to enable unsafe code in your project settings to use the |
||||
|
|
|
Yes, they do exist. Check out the documentation: And these SO questions:
And a little introduction to unsafe code: |
||||
|
|
|
Yes they exist. You can write unsafe code. |
|||
|
|
|
Yes, they are but only in a limited fashion, have a look at this article on MSDN |
|||
|
|
|
Yes you can use pointers if you do |
|||
|
|
|
I would take a long, hard look at what you intend to do and see if you are trying to write C++ code in C#. There are very few instances where |
|||
|
|
|
Hai,
pointers we can use in .net but the framework not support pointers because of automatic garbage collection. So we write as un managed code .For use unmanaged code go to your sample:
|
||||
|
|