Answers for "object dynamic type c# in method"

C#
0

dynamic type c#

dynamic cust = GetCustomer();
cust.FirstName = "foo"; // works as expected
cust.Process(); // works as expected
cust.MissingMethod(); // No method found!
Posted by: Guest on July-24-2021

C# Answers by Framework

Browse Popular Code Answers by Language