cs0029.cs 175 B

123456789101112
  1. // cs0029: cannot implicitly conver type `double' to `decimal'
  2. // Line: 7
  3. class T {
  4. public static int Main (string [] args)
  5. {
  6. decimal d = 100d;
  7. return 1;
  8. }
  9. }