Friday, March 27, 2009

What is the dynamic keyword used for

Question :What is the dynamic keyword used for?
Answer :Specifies that instances of a class may possess dynamic properties added at runtime. If you use
the dynamic attribute on a class, you can add properties to instances of that class at runtime. Classes
that are not marked as dynamic are considered sealed, which means that properties cannot be added
to instances of the class.

No comments: