Compiler Warning (level 4) CS0078

The 'l' suffix is easily confused with the digit '1' -- use 'L' for clarity

The compiler warns when it detects a long literal using a lowercase l instead of an uppercase L.

The following sample generates CS0078:

class Program
{
   public static void TestL(long i)
   {
   }

   public static void Main()
   {
      TestL(25l);   // CS0078
      // try the following line instead
      // TestL(25L);
   }
}