[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / tests / test-partial-17.cs
1 public class Test
2 {
3         public static bool Check (string name, string [] names)
4         {
5                 foreach (string partial in names) {
6                         if (name.StartsWith (partial))
7                                 return true;
8                 }
9
10                 return false;
11         }
12
13         public static void Main ()
14         {
15         }
16 }