[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-externalias-00-lib.cs
1 // Compiler options: -t:library
2 using System;
3
4 public class GlobalClass
5 {
6         public int InstanceMethod ()
7         {
8                 return 1;
9         }
10         
11         public static int StaticMethod ()
12         {
13                 return 1;
14         }
15
16         public static void JustForFirst ()
17         {
18         }
19 }
20
21 namespace Namespace1 
22 {
23         public class MyClass1
24         {
25                 public int InstanceMethod ()
26                 {
27                         return 1;
28                 }
29                 
30                 public static int StaticMethod ()
31                 {
32                         return 1;
33                 }
34                 
35                 public class MyNestedClass1
36                 {
37                         public int InstanceMethod ()
38                         {
39                                 return 1;
40                         }
41
42                         public static int StaticMethod ()
43                         {
44                                 return 1;
45                         }
46                 }
47
48                 public static void JustForFirst ()
49                 {
50                 }
51         }
52
53         namespace Namespace2
54         {
55                 public class MyClass2
56                 {
57                         public class MyNestedClass2
58                         {
59                                 public int InstanceMethod ()
60                                 {
61                                         return 1;
62                                 }
63
64                                 public static int StaticMethod ()
65                                 {
66                                         return 1;
67                                 }
68                         }
69                         
70                         public int InstanceMethod ()
71                         {
72                                 return 1;
73                         }
74                         
75                         public static int StaticMethod ()
76                         {
77                                 return 1;
78                         }
79                         
80                         public static void JustForFirst ()
81                         {
82                         }
83                 }
84
85         }
86 }
87