Help regarding RTTI
-
I pray that this finds you well, and in the best of health and spirits. I am currently working on a project and want to know how can we obtain RTTI from a C file ( in .Net)? Reflection namespace is used for RTTI of classes and assemblies. but what about C files??? Day by Day Everyone is moving towards graveyard
-
I pray that this finds you well, and in the best of health and spirits. I am currently working on a project and want to know how can we obtain RTTI from a C file ( in .Net)? Reflection namespace is used for RTTI of classes and assemblies. but what about C files??? Day by Day Everyone is moving towards graveyard
You can only use reflection on managed types. Is you C file compiled with the /clr switch? (I'm not sure you can even do this)
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"
-
You can only use reflection on managed types. Is you C file compiled with the /clr switch? (I'm not sure you can even do this)
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"
Thanx for replying Ryan. I've compiled C files, but their Compiler is different i.e Microtech PPC. Is there any way to get method info from noncompiled files? Looking for ur response. Day by Day Everyone is moving towards graveyard
-
Thanx for replying Ryan. I've compiled C files, but their Compiler is different i.e Microtech PPC. Is there any way to get method info from noncompiled files? Looking for ur response. Day by Day Everyone is moving towards graveyard
mooni wrote:
I've compiled C files, but their Compiler is different i.e Microtech PPC
You can only get the information from managed types compiled with the Visual C++ compiler, so no, you can't get the information you need.
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"