I'm currently working on a C++ application. I came across this operator: ^
In my case it's not the XOR I guess, because in the given code the usage is like that:
as a variable declaration:
Dictionary<System::String^, List<int>^>^ Tomatoes;
or as a Method returning parameter:
Food::Vegetable^ Vegetable_Create(List<KeyValuePair<int, Dictionary<System::String^, float>^>>^ a, List<KeyValuePair<System::String^, Food::Cucumber^>>^ b, Dictionary<System::String^, float>^ c);
I was wondering what the ^
operator is actually used for.
Do you know what the ^
operator is used for in C++ and is it really necessary?
Thanks!