What is the difference between dynamic type variables and object type variables?

Technology CommunityCategory: C#What is the difference between dynamic type variables and object type variables?
VietMX Staff asked 3 years ago

Dynamic types are similar to object types except that type checking for object type variables takes place at compile time, whereas that for the dynamic type variables takes place at run time.