使用英语阅读

通过


编译器警告(等级 4)CS0078

“l”后缀容易与数字“1”混淆;为清楚起见,请使用“L”

编译器会在检测到使用小写 l 而不是大写 L 的 long 文本时发出警告。

以下示例生成 CS0078:

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

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