22 lines
553 B
Plaintext
22 lines
553 B
Plaintext
A dynamic class defines an object that can be altered at run time by adding or changing properties and methods. This extremely powerful mechanism should be used very carefully, and only in very limited use cases.
|
|
|
|
|
|
Indeed, by definition dynamic classes make refactoring difficult and prevent the compiler from raising potential errors at compile time.
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
dynamic public class DynamicFoo
|
|
{...}
|
|
----
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
public class Foo //Note that the class has been renamed to avoid confusion
|
|
{...}
|
|
----
|
|
|