cs0023.cs 180 B

12345678910111213
  1. // cs0023.cs : Operator ~ cannot be applied to operand of type `Foo'
  2. // Line : 10
  3. public class Foo {
  4. public static void Main ()
  5. {
  6. Foo k = new Foo ();
  7. int i = ~ k;
  8. }
  9. }