CSharpCodingStandard
CSharpCodingStandard copied to clipboard
DOCUMENTATION: Talk about Using Methods instead of Comments for Documentation
Instead of:
this.someExternalLibrary.PtrShit();
Use:
public void OneLinerMethodThatReallySaysWhatItDoes() =>
this.someExternalLibrary.PtrShit();