Not used in VC++

For managed code use typeid instead:


MyClassName::typeid

N.B. typeid isn't shown as an as you type option after :: but when fully typed it becomes blue to confirm the special keyword.

If using /clr:oldSyntax command line option you can use __typeof instead:


__typeof(MyClassName)

Examples


XmlSerializer ^XmlSerializer1 = gcnew XmlSerializer(MyClassName::typeid);

 

An example creating a type object:


	Type^ attributeType = AssemblyFileVersionAttribute::typeid;

You can then use attributeType in place of typeof(###)

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through resources like this. We hope you find it helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support here. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *