VB.NET vs C#, round two

I don’t understand the people who complain about the braces in C#. Like Cata said, use the Ctrl + ] combination. Even VS will highlite the pairs for you. If your code is weirdly formatted select your code and press ctrl+k , ctrl+f
That will properly indent your code.

I’ve programmed in VB, VB.NET and C# for quite a while now, but I definately prefer C#. If not only for the terrible code snippets in VB.NET.
if I want to create a property e.g. in a c# class, I would go:
ctrl+k, ctrl+x, p , enter
there I go… How many keys I have to hit in VB?

I also don’t like the syntax for generics in VB.NET.
class MyClassT where T:OtherClass
{
}

compared to
class MyClass(Of T as OtherClass)

end class

To come to conclusion, programming in C# is much faster, for me at least…