Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to know if pointers exist in .NET technology. If yes, is there any example for pointers in C#?

Please guide me .

share|improve this question
4  
What do you want to DO with those pointers? The usual way is to use REFERENCES (which are similar). – Hans Kesting Aug 31 '10 at 12:13
2  
This question is dying to be skeet owned – Sevki Aug 31 '10 at 13:18
1  
Skeetowned n. to get one answer posted, which is more correct than anything anyone else could post, so no one else does, they just vote for that answer and feel dumb. – Jimmy Hoffa Aug 31 '10 at 15:29
Can you clarify what you mean with "pointers"? Do you mean C-style pointers? – Dimitri C. Sep 1 '10 at 6:14

9 Answers

up vote 13 down vote accepted

Yes, they do exist...

And an example of their use...

share|improve this answer

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:

string x = "asdf";
unsafe {
  fixed (char* s = x) {
    char* p = s;
    for (int i = 0; i < 4; i++) {
      Console.WriteLine(*p);
      p++;
    }
  }
}

Note that a managed object that you want to access via a pointer has to be protected from being moved by using the fixed command, and that the compiler won't let you change the pointer that you get, so if you want a changeable pointer you have to copy it.

You need to enable unsafe code in your project settings to use the unsafe keyword.

share|improve this answer

Yes they exist. You can write unsafe code.

share|improve this answer

Yes, they are but only in a limited fashion, have a look at this article on MSDN

share|improve this answer

Yes they do. You can start with this link.

share|improve this answer

Yes you can use pointers if you do unsafe code. See this MSDN section for details: Unsafe Code and Pointers (C# Programming Guide)

share|improve this answer

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 unsafe code is the preferred solution. C# abstracts at a higher level than C++. As such, you might want to consider following the idioms of the language you are using.

share|improve this answer

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 project properties->build -> and enable allow unsafe code.

sample:

 class UnsafeCode
{
    //mark main as unsafe
    unsafe public static void Main()
    {
        int count = 99;
        int* pointer;   //create an int pointer. 
        pointer = &count;   //put address of count into pointer

        Console.WriteLine( "Initial value of count is " + *pointer );
        *pointer = 10;  //assign 10 to count via pointer
        Console.WriteLine( "New value of count is " + *pointer);
        Console.ReadLine();
       }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.