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.
|
|
Yes ofcourse it is used ..
MSDN Site would be better for seeking information on VB, C# and etc .. here is the link |
|||
|
|
|
See -> Operator and
Outputs
|
|||
|
|
|
The 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 |
||||
|
|
|
Do you mean Lambda Expressions? |
|||
|
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
|
|||
|
|
|
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...
|
|||
|
|
|
It's an operator that is not commonly used, only in unsafe code http://msdn.microsoft.com/en-us/library/s8bz4d5h(VS.80).aspx |
|||||||||||
|