Dynamically created property
Managed C++/CLI
2
Posts
2
Posters
0
Views
1
Watching
-
I can make any of my MC++ classes have static properties (via the property keyword), but how can I create a property list dynamically at runtime? Example? Neil
-
I can make any of my MC++ classes have static properties (via the property keyword), but how can I create a property list dynamically at runtime? Example? Neil
Neil_Scales wrote:
I can make any of my MC++ classes have static properties (via the property keyword), but how can I create a property list dynamically at runtime?
You cannot alter a class at runtime. You could attempt to dynamically create a new class derived from another class and then instantiate it dynamically at runtime. Regards, Nish
My blog : Nish’s thoughts on MFC, C++/CLI and .NET