What do the items on the MSVC ++ Properties tab mean?

I was playing around with my MSVC ++ compiler and the properties tab for my point class said:

IsAbstract  - false
IsInjected  - false
IsManaged   - false
IsSealed    - false
IsTemplate  - false
IsValue     - false

      

What does this mean, and why were they all gray except IsAbstract and IsSealed?

+1


a source to share


1 answer


A sealed class is one that you cannot inherit. I assume IsSealed is false means you can inherit from it.



0


a source







All Articles