I am trying to learn C# and I am familiar with the C++ struct pointing notation ->
. I was curious if that crossed over into C#.
Example:
While C# has pointers behind the scenes they are totally hidden from the user. You can't get at a pointer to dereference it. You only have the dot notation to access something inside something, whether the original is a pointer or not is hidden from you.
The only way you are even aware of pointers is things that pass by reference rather than passing by value.