+ 2
So guys do you think the typeid().name() function works in c#?
typeid is used in c++
1 Answer
+ 1
No, C# has it's own way of doing reflections using typeinfo(type).name. If you intend to interop between c++ and c# I suggest you define your own reflection, or simple naming system.