I'm looking at a code file and see an catch statement in the following format:
try{
do_something();
} catch (System::Exception^ e){
log_something();
}
What is the significance of the ^ operator in the catch?
I'm looking at a code file and see an catch statement in the following format:
try{
do_something();
} catch (System::Exception^ e){
log_something();
}
What is the significance of the ^ operator in the catch?