0

I read an article about C++ language. There is lines using "^", not XOR. Sample code is like:

array<String^>^args = System::Environment::GetCommandLineArgs();
Lucas Trzesniewski
  • 50,214
  • 11
  • 107
  • 158

1 Answers1

0

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++.

novice
  • 545
  • 3
  • 16