I remember that somewhere there the “^” operator is used as a pointer operator in C ++ managed code. Therefore, should "^" be equivalent to the rule of the operator *?
Assuming my understanding is correct, when I started to understand .Net and encoded some sample programs, I came across some code:
String ^username;
.
.
.
username = "XYZ";
I am having trouble understanding this.
source
share