What is the C# standard for capitialising method names? [closed]
The first one is right following the .NET Capitalization Conventions
First one is standard in C#, second is standard in Java
C# Method are normally in PascalCase. See the guidelines here.
Microsoft recommend to Use The first Approach.