1 // CS0019: Operator `!=' cannot be applied to operands of type `method group' and `string'
4 namespace InternalAccess
6 public abstract class Base
8 internal string Prop () { return "a"; }
11 public class DerivedProtectedExample
: Base
13 protected new string Prop { get { return "E"; }
}
18 public static int Main ()
20 DerivedProtectedExample dpe
= new DerivedProtectedExample ();