Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc/mdoc.Test/SampleClasses/SomeClass.cs')
-rw-r--r--mdoc/mdoc.Test/SampleClasses/SomeClass.cs96
1 files changed, 96 insertions, 0 deletions
diff --git a/mdoc/mdoc.Test/SampleClasses/SomeClass.cs b/mdoc/mdoc.Test/SampleClasses/SomeClass.cs
new file mode 100644
index 00000000..be72f7f3
--- /dev/null
+++ b/mdoc/mdoc.Test/SampleClasses/SomeClass.cs
@@ -0,0 +1,96 @@
+using System;
+using Windows.Foundation.Metadata;
+
+namespace mdoc.Test.SampleClasses
+{
+ public class SomeClass
+ {
+ public SomeClass(int i)
+ {
+
+ }
+
+ public SomeClass(int i, int j)
+ {
+
+ }
+
+ public int Field;
+
+ public int Property { get; set; }
+
+ public static int StaticProperty { get; set; }
+
+ public TestClass Property2 { get; set; }
+ public static TestClass StaticProperty2 { get; set; }
+
+ public TestClass Property3 { get; }
+
+ public TestClass Property4
+ {
+ set
+ {
+
+ }
+ }
+
+ public async void AsyncMethod()
+ {
+
+ }
+
+ public static async void StaticAsyncMethod()
+ {
+
+ }
+
+ public void SomeMethodWithParameters(SomeClass someClass, int i)
+ {
+
+ }
+
+ public void SomeMethod()
+ {
+
+ }
+
+ public void SomeMethodWebHostHiddenParameter([WebHostHidden] int parameter)
+ {
+
+ }
+
+ [return: WebHostHidden()]
+ public int SomeMethodWebHostHiddenReturn(int parameter)
+ {
+ throw new NotImplementedException();
+ }
+
+ public static void SomeStaticMethod()
+ {
+
+ }
+
+ public int SomeMethod2()
+ {
+ return 0;
+ }
+
+ public static int SomeStaticMethod2()
+ {
+ return 0;
+ }
+
+ public bool SomeMethodWithReturnBool()
+ {
+ return true;
+ }
+
+ public void op_NotOperator()
+ {
+ }
+
+ public event EventHandler<object> AppMemoryUsageIncreased;
+ public static event EventHandler<object> StaticEvent;
+ private static event EventHandler<object> PrivateEvent;
+ }
+} \ No newline at end of file