Learn the following:
1) what "using" blocks do and how to use them
2) The curly-bracket style syntax, and the implications this has on
visibility (i.e. you can see "out" of a block, but you can't see "into" one
3) The fact that you have to put a colon ";" at the end of each line that
you don't want to continue, and if you want to continue a line you just
*don't* put ";" at the end, rather than putting "_" at the end
4) The conditional expression syntax - i.e. "cond ? trueexpression :
falseexpression"
Once you've grasped the above, then you can safely claim you have as much
experience in C# as you do in VB.NET, as the rest is pure framework.