Switching to Visual C Sharp Programming From Visual Basic
If you're learning to program in Visual C# for the first time, but you've got a background in VB or VBA programming, this is the...
If you're learning to program in Visual C# for the first time, but you've got a background in VB or VBA programming, this is the article for you! It summarises the main concepts which you'll need to get used to. Let's begin with the thorny topic of declaring variables, and then move on to case sensitivity.Declaring VariablesIn C# you put the type of the variable first, then its name, and then (optionally) its value. For example:int i = 1;This command would create a variable of type int, which is called i and which will hold the value 1.Case Sensitive VariablesSuppose...