[sgen] Enable concurrent major by default on desktop platforms
[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         #if DELETETEST
26         public struct nint {
27
28         }
29         #endif
30         #if DELETETEST && !V2
31         public class WillDelete {
32                 public string Name {get;set;}
33         }
34         #endif
35
36         #if MULTITEST
37         public class OnlyInMulti {
38         }
39         #endif
40 }