Hacker News new | ask | show | jobs
by dandruffhead 4163 days ago
It's just an alias, but the way I use it is different. When declaring variable I opt for `string` but of course you should probably user `var`. But when calling method bound to the class, I would use `String`, i.e `String.format()`, etc
2 comments

I tend to do the same.

I find there is some kind of "logic" to this idea :D

Do you also `Int32.Parse`?

I just stick with `string` everywhere.