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:
authorJoel Martinez <joelmartinez@gmail.com>2017-02-17 22:25:54 +0300
committerGitHub <noreply@github.com>2017-02-17 22:25:54 +0300
commit545f975c74ca11903bac8a8875160e9d7d982ac5 (patch)
tree2687a2de31edfcb2a390c9024f57c93357c0452b /mdoc/Test/DocTest-InternalInterface.cs
parentca25ca96e90f346e0d58331dcd206e740de13499 (diff)
mdoc: Resolves an issue with generic array extension methods. (#22)
Closes #6
Diffstat (limited to 'mdoc/Test/DocTest-InternalInterface.cs')
-rw-r--r--mdoc/Test/DocTest-InternalInterface.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mdoc/Test/DocTest-InternalInterface.cs b/mdoc/Test/DocTest-InternalInterface.cs
index 5d65c34c..812f8dc7 100644
--- a/mdoc/Test/DocTest-InternalInterface.cs
+++ b/mdoc/Test/DocTest-InternalInterface.cs
@@ -14,4 +14,11 @@ namespace MyNamespace {
bool MyInternalInterface.Foo {get;set;}
void MyInternalInterface.FooMeth () {}
}
+
+ public static class ArrayX10 {
+ public static bool IsAligned<T> (this T[] vect, int index) where T : struct
+ {
+ return false;
+ }
+ }
}