update readme (#21797)
[mono-project.git] / mcs / tests / gtest-exmethod-18.cs
blobd4cc4a5bed1f5f71eba43f1a504003680bed9e3e
1 using System;
3 class Foo {
4 public bool IsBar {
5 get { return false; }
9 static class FooExt {
11 public static bool IsBar (this Foo f)
13 return f.IsBar;
17 class Repro {
19 public static void Main ()
21 var f = new Foo ();
22 Console.WriteLine (f.IsBar ());