Difference between DECLARE_DYNAMIC and DECLARE_DYNCREATE?

后端 未结 1 1262
一生所求
一生所求 2021-02-20 17:41

Could you please let me know what is difference between DECLARE_DYNAMIC and DECLARE_DYNCREATE?

Where exactly we can use them?

相关标签:
1条回答
  • 2021-02-20 18:15

    The first declares that a class has runtime type info and the second that instances can be created dynamically at runtime. This is described in detail in the MSDN documentation - see links like Run-Time Object Model Services for more info.

    0 讨论(0)
提交回复
热议问题