I stumbled upon this code and don't understand the ^
operator in the string ^name
declaration.
I found on google that it is a bitwise XOR operator but can't see the relevance here:
ref class Animal{
int legs;
String ^name;
};
I stumbled upon this code and don't understand the ^
operator in the string ^name
declaration.
I found on google that it is a bitwise XOR operator but can't see the relevance here:
ref class Animal{
int legs;
String ^name;
};