Possible Duplicate:
What does the caret mean in C++/CLI?
In C++/CLR, what does a hat character ^ do?
I created my first Win form application in Visual Studio C++, and browsing through the code saw something that I cannot understand:
private: System::Windows::Forms::Button^ button1;
What is the meaning of ^ sign in this line? I understand * and & but never seen ^ in definition of an object.