If at first you don't succeed, call it version 1.0

Contact Me

Sarvesh Kushwaha
Email : sarveshkushwaha@outlook.com

Total Pageviews

Powered by Blogger.

If at first you don't succeed, call it version 1.0

Sunday, 12 February 2017

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...