Merge pull request #3040 from xmcclure/debugger-step-recursive
[mono.git] / mcs / tools / mdoc / Test / DocTest-DropNS-unified.cs
1 namespace MyNamespace {
2         public class MyClass {
3                 public string MyProperty {get;set;}
4                 public float Hello(int value) {
5                         return 0.0f;
6                 }
7                 public char OnlyInUnified {get;set;} 
8                 
9                 #if DELETETEST
10                 public string InBoth {get;set;}
11                 public string InBothUnified {get;set;}
12                 public nint InBothMagicType {get;set;}
13                 #endif
14
15                 #if DELETETEST && V2
16                 public string AddedInV2 {get;set;}
17                 public string AddedInV2Unified {get;set;}
18                 #endif
19                 #if DELETETEST && !V2
20                 public string WillDeleteInV2 {get;set;}
21                 public string WillDeleteInV2Unified {get;set;}
22                 #endif
23         }
24
25         public static class MyClassExtensions {
26                 public static bool AnExtension (this MyClass value) { return false; }
27         }
28         #if DELETETEST
29         public struct nint {
30
31         }
32         #endif
33         #if DELETETEST && !V2
34         public class WillDelete {
35                 public string Name {get;set;}
36         }
37         #endif
38
39         #if MULTITEST
40         public class OnlyInMulti {
41         }
42         #endif
43 }