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

I have remembered that I have seen "->" used in C#. Apparently I cannot search it through Google (and I do not know what is the name). Therefore I would be very happy if you could explain it to me. Thanks.

share|improve this question
9  
Are you sure you mean -> and not => ? – Mark Byers Jan 11 '10 at 9:28
Wasn't it "-->" that you've seen? – Stormenet Jan 11 '10 at 9:30
Why not put that as the answer, Charlie? :) – GManNickG Jan 11 '10 at 9:30
2  
@GMan Because I don't know much about the operator and he asked for it to be explained. – Charlie Jan 11 '10 at 9:31

8 Answers

up vote 1 down vote accepted

Yes ofcourse it is used ..
the operator -> is used to access the members of a struct (its a pointer).

MSDN Site would be better for seeking information on VB, C# and etc .. here is the link

share|improve this answer

-> Accesses a member of a struct through a pointer.

See -> Operator

and

Pointer Types

using System;
struct Point
{
   public int x, y; 
}

class Test 
{
   public unsafe static void Main() 
   {
      Point pt = new Point();
      Point* pp = &pt;
      pp->x = 123;
      pp->y = 456;
      Console.WriteLine ( "{0} {1}", pt.x, pt.y );
   }
}

Outputs

123 456
share|improve this answer

The -> operator is used for dereferencing pointers, and is used only in unsafe C# code.

Pointers are more or less like object references, except that they point to a memory address. It's a little closer to the internal workings of the system, but it puts garbage collection and type safety out of play. References are more abstract and more restrictive, but allow the runtime to guarantee type safety and do memory management.

See also this MSDN article about unsafe code: http://msdn.microsoft.com/en-us/library/t2yzs44b.aspx

share|improve this answer

Do you mean Lambda Expressions?

share|improve this answer
2  
No, that's =>, not ->. – wj32 Jan 11 '10 at 9:29
5  
wj32: Yeah, hence the reason my post started with "Do you mean ...". – Noon Silk Jan 11 '10 at 9:29

From MSDN

The -> operator combines pointer dereferencing and member access

share|improve this answer

It's used the same way it's used in C - to access a field in a struct using a pointer. To use pointers in C#, you need to have /unsafe enabled. For example:

unsafe
{
    MyStruct* ptr;

    Console.WriteLine(ptr->SomeField.ToString());
}
share|improve this answer

Exactly the same as in C++. But to have pointers in C# requires "unsafe" code and you don't want to do that too much...

    static unsafe void Main(string[] args)
    {
        int x = 5;
        int* p = &x;

        Console.WriteLine(p->ToString());
    }
share|improve this answer

It's an operator that is not commonly used, only in unsafe code

http://msdn.microsoft.com/en-us/library/s8bz4d5h(VS.80).aspx

share|improve this answer
unsafe code is a language feature of C#. What does make its usage un-normal, then? – Јοеу Jan 11 '10 at 9:33
Johannes: What? Are you normally writing lots of unsafe functions, then? If so, good for you, but it's not normal, in general c# code. – Noon Silk Jan 11 '10 at 9:35
Unsafe code makes the code unverifiable and works against .NET concepts as garbage collection etc.. It is mostly used for calling native APIs. – Arve Jan 11 '10 at 9:36
s/normally/commonly/ – el.pescado Jan 11 '10 at 9:42
silky: No, I don't. But I'd consider unsafe to be no less normal than lambdas or LINQ. el.pescado suggests a nice alternative :-) – Јοеу Jan 11 '10 at 9:47
show 2 more comments

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.