You've already forked linux-packaging-mono
Imported Upstream version 6.6.0.89
Former-commit-id: b39a328747c2f3414dc52e009fb6f0aa80ca2492
This commit is contained in:
parent
cf815e07e0
commit
95fdb59ea6
100
external/api-doc-tools/mdoc/mdoc.Test/SampleClasses/SomeClass.cs
vendored
Normal file
100
external/api-doc-tools/mdoc/mdoc.Test/SampleClasses/SomeClass.cs
vendored
Normal file
@ -0,0 +1,100 @@
|
||||
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 void get_Method()
|
||||
{
|
||||
}
|
||||
|
||||
public event EventHandler<object> AppMemoryUsageIncreased;
|
||||
public static event EventHandler<object> StaticEvent;
|
||||
private static event EventHandler<object> PrivateEvent;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user