managed type_id

  • Thread starter Thread starter Boni
  • Start date Start date
B

Boni

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()=System::Int32::GetType())//fails

}
 
Back
Top