-> Operator (C# Reference)
Visual Studio 2010
The -> operator combines pointer dereferencing and member access.
An expression of the form,
x->y
(where x is a pointer of type T* and y is a member of T) is equivalent to,
(*x).y
The -> operator can be used only in code that is marked as unsafe.
The -> operator cannot be overloaded.