dynamic type csharp

Code Example - dynamic type csharp

                
                        dynamic cust = GetCustomer();
cust.FirstName = "foo"; // works as expected
cust.Process(); // works as expected
cust.MissingMethod(); // No method found!