I read an article about C++ language. There is lines using "^", not XOR. Sample code is like:
array<String^>^args = System::Environment::GetCommandLineArgs();
I read an article about C++ language. There is lines using "^", not XOR. Sample code is like:
array<String^>^args = System::Environment::GetCommandLineArgs();
The symbol ^ is used for managed pointers. Read http://msdn.microsoft.com/en-us/library/cxx6f46y.aspx , for more information about them.
They are from C++/CLI though and not C++.