- Mar 12, 2000
- 8,324
- 2
- 0
In C#, I noticed that methods are capitalized. Like in Console.WriteLine(). In Java, methods are in lower case like Console.writeLine().
I like the Java way better because it makes it easy to distinguish class members that are functions and those that are objects. If a class contains an object as a member, then that object is capitalized. If class contains a function (method) then that function is lower cased.
I like the Java way better because it makes it easy to distinguish class members that are functions and those that are objects. If a class contains an object as a member, then that object is capitalized. If class contains a function (method) then that function is lower cased.
