cs0019.cs 196 B

1234567891011121314
  1. // cs0019.cs : Operator + cannot be applied to operands of type `Foo' and `int'
  2. // Line : 11
  3. public class Foo {
  4. public static void Main ()
  5. {
  6. Foo k = new Foo ();
  7. int i = k + 6;
  8. }
  9. }