1 // The standard says this doesn't have to have the 'abstract' modifier
2 public partial class Foo
7 public abstract partial class Foo
9 public string Id { get { return myId; }
}
12 public class Bar
: Foo
14 public Bar (string id
) { myId = id; }
17 public class PartialAbstractCompilationError
19 public static void Main ()
21 System
.Console
.WriteLine (typeof (Foo
).IsAbstract
);