vote up 4 vote down star

What is the difference between using ToString and ToString() in VB.NET?

flag

52% accept rate

1 Answer

vote up 18 vote down check

Nothing. VB.NET allows you exclude the parentheses on any method that doesn't take in an argument.

link|flag
Exactly the right answer, good practice would be to go ahead and get used to those parentheses and add them in, as if you do any cross language development in .Net (pretty common for anyone using VB.Net) it is easier not to forget them if you already use them. – Tom Anderson Dec 24 '08 at 2:52
Agreed, VB.net allows you to be pretty lazy and not use best practices. Im not sure if the omission of parans is valid if option strict is set? – schmoopy Dec 24 '08 at 3:28
I sometimes wish I could do that In C#. I find empty parentheses annoying. – chaiguy1337 Dec 24 '08 at 4:51
Empty parenthases are there for a reason! It let's you know the differance between a property (or public feild) and a method on the class. – Charles Graham Dec 24 '08 at 4:53
The D programming language lets you omit parentheses, and goes one step further in that it lets you assign to functions taking one parameter: a = 10; is a(10); – Johannes Schaub - litb Dec 24 '08 at 5:21
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.