Post Made Community Wiki by Community

show/hide this revision's text 1

Do you prefer verbose or shorthand languages

As the title of this post states. Would you prefer to use a language that is verbose or more shorthand? So would you prefer this:

Dim myvar as string = "hello world"

or this

string myvar = "hello world"

I know I just compared C# to VB but you get my drift, another example would be powershell where you can use the % sign to mean foreach(I'm pretty sure thats right I havn't use PS in a while).

Personally I find VB more easier to write but I would rather read someone elses C# code, mainly because of its shorthand notation I found it easier to see what the person is trying to do.

What about you?