I understand in C , the operator ^is used for bit-wise EX-OR. In one of the C++ code I saw the following lines where this operator is used:
using namespace System::Threading;
public ref class Expert : public System::Windows::Forms::Form
{
int i ;
float a ;
public:
int count;
Thread^ th;
}
What is the meaning of ^ here ?