What are pointer types in C#?

Technology CommunityCategory: C#What are pointer types in C#?
VietMX Staff asked 3 years ago

Pointer type variables store the memory address of another type. Pointers in C# have the same capabilities as the pointers in C or C++.

char* cptr;  int* iptr;