1 // CS0120: An object reference is required to access non-static member `Foo.Bar()'
12 public static string Bar (string thing
)
14 return string.Format ("hello {0}", thing
);
18 public class MainClass
20 public static void Main ()
22 Console
.WriteLine (Foo
.Bar ());