10 Essentials C# keywords every .Net developer should know before attending an Interview #AspNetInterviewQuestionsSeries
1. Var and/vs Dynamic
With Var keyword properties / Methods /Operators etc are resolve at compile time.
Var keyword is static typed and type cannot be change,Once you have assigned the type to var.
var i = "abc";
i = 1 ; //you cannot assign it integer value once it has been marked as string
With Dynamic keyword properties / Methods /Operators etc are resolve at runtime.
type can be change...