I just came across this code and a few Google searches turn up no explanation of this mysterious (to me) syntax.
Hashtable^ tempHash = gcnew Hashtable(iterators_);
IDictionaryEnumerator^ enumerator = tempHash->GetEnumerator();
What the heck does the caret mean? (The gcnew
is also new to me, and I asked about that here.)