Merge pull request #1225 from strawd/bug22307
[mono.git] / mcs / tools / mdoc / Test / DocTest-DropNS-classic.cs
1 namespace MyFramework.MyNamespace {
2         public class MyClass {
3                 public string MyProperty {get;set;}
4                 public float Hello(int value) {
5                         return 0.0f;
6                 }
7                 #if DELETETEST
8                 public string InBoth {get;set;}
9                 public string InBothClassic {get;set;}
10                 public int InBothMagicType {get;set;}
11                 #endif
12
13                 #if DELETETEST && V2
14                 public string AddedInV2 {get;set;}
15                 public string AddedInV2Classic {get;set;}
16                 #endif
17                 #if DELETETEST && !V2
18                 public string WillDeleteInV2 {get;set;}
19                 public string WillDeleteInV2Classic {get;set;}
20                 #endif
21         }
22
23         #if DELETETEST && !V2
24         public class WillDelete {
25                 public string Name {get;set;}
26         }
27         #endif
28 }