Dear all,
what is a correct syntax for typeid inC++ CLI.
Thanks.
Boni
void test( Object ^Value_){
if (typeid(Value)= =typed (int)) // fails
if (Value->GetType()=Syst em::Int32::GetT ype())//fails
}
what is a correct syntax for typeid inC++ CLI.
Thanks.
Boni
void test( Object ^Value_){
if (typeid(Value)= =typed (int)) // fails
if (Value->GetType()=Syst em::Int32::GetT ype())//fails
}
Comment