CSharpCodingStandard icon indicating copy to clipboard operation
CSharpCodingStandard copied to clipboard

DOCUMENTATION: Talk about Using Methods instead of Comments for Documentation

Open hassanhabib opened this issue 2 years ago • 0 comments

Instead of:

this.someExternalLibrary.PtrShit();

Use:


public void OneLinerMethodThatReallySaysWhatItDoes() =>
    this.someExternalLibrary.PtrShit();


hassanhabib avatar Dec 18 '23 15:12 hassanhabib