-> Operator (C# Reference)
Visual Studio 2005
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 unmanaged code.
The -> operator cannot be overloaded.