Is it bad to use dynamic in C#?
Is it bad to use dynamic in C#? The short answer is YES, it is a bad practice to use dynamic. Why? dynamic keyword refers to type late binding, which means the system will check type only during execution instead of during compilation. It will then mean that user, instead of programmer, is left to […]