R
Ralf Propach
Hi,
in C# I can write
Type listType = typeof(System.Collections.Generic.List<>);
What is the equivalent in C++?
I get compiler errors for all of the following:
Type listType = System::Collections::Generic::List::typeid;
Type listType = System::Collections::Generic::List<>::typeid;
Type listType = __typeof(System::Collections::Generic::List);
Type listType = __typeof(System::Collections::Generic::List<>);
TIA
Ralf
in C# I can write
Type listType = typeof(System.Collections.Generic.List<>);
What is the equivalent in C++?
I get compiler errors for all of the following:
Type listType = System::Collections::Generic::List::typeid;
Type listType = System::Collections::Generic::List<>::typeid;
Type listType = __typeof(System::Collections::Generic::List);
Type listType = __typeof(System::Collections::Generic::List<>);
TIA
Ralf