Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the C# standard for capitialising method names? [closed]

What is the C# standard for capitialising method names? Is it:

MyClass.MyMethod() 

or

MyClass.myMethod() 

?

like image 438
Craig Johnston Avatar asked Mar 08 '11 07:03

Craig Johnston


1 Answers

The first one is right following the .NET Capitalization Conventions

like image 132
il_guru Avatar answered Sep 23 '22 01:09

il_guru