Language: C# | Type: CODE_SMELL | Severity: Minor
Tags: convention, pitfall
Using upper case literal suffixes removes the potential ambiguity between "1" (digit 1) and "l" (letter el) for declaring literals.
const long b = 0l; // Noncompliant
const long b = 0L;