2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1928.cs
blob279227515905bfc5b71827b2ebd55afbbdfc3c62
1 // CS1928: Type `string' does not contain a member `Check' and the best extension method overload `C.Check(this string, int)' has some invalid arguments
2 // Line: 12
4 static class C
6 public static void Check (this string s, int i)
10 static void Main ()
12 "alo".Check ("o");