What are pointer types in C#? Technology Community › Category: C# › What are pointer types in C#? 0 Vote Up Vote Down VietMX Staff asked 4 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;