is there any possibility to declare a class dynamically?
is there any possibility to create generic list with anonymous class in C#?
any code snippets will help. thanks
is there any possibility to declare a class dynamically? is there any possibility to
Share
Microsoft made C# dynamic in version 4.0. You can use the new ‘dynamic’ keyword. The following link has some good examples of how to use the new dynamic type.
http://msdn.microsoft.com/en-us/library/dd264741.aspx