Duration: 18 minutes
Summary: In .NET 4.0 Microsoft added the dynamic keyword to C#. In this example, we will try to illustrate one use of the dynamic keyword. We will load an assembly dynamically from the bin folder. Then, we create an instance of a class available in the assembly using Activator.CreateInstance() method. Finally, we make a call to the method inside the class.
Methodology of the development of example: Good coding standard and simplified design.
Technology Used: C# 4.0
Keywords: C#, System, dynamic, Console, try, catch, static, void, Activator, RuntimeBinderException.