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:
authorkatsiaryna_bialiatka <katsiaryna_bialiatka@epam.com>2018-06-08 15:58:17 +0300
committerkatsiaryna_bialiatka <katsiaryna_bialiatka@epam.com>2018-06-08 15:58:17 +0300
commit59459f1de8394c8110c2fddbeb8d65f8741a8122 (patch)
tree7a7aadda3ab69cc983e6b4154753e8b47deeaaf7 /mdoc/Test/ClassEnumerator.vb
parent111914edcbdf705aa44cfaeadabf343e3e3ea052 (diff)
Fix Eii property names for VB
Apply fix to have interface name in signature Fix ecma importers + slash doc importers Add unit and integration tests Addnew attribute for custom Eii name + fix xsd schema Closes #92
Diffstat (limited to 'mdoc/Test/ClassEnumerator.vb')
-rw-r--r--mdoc/Test/ClassEnumerator.vb28
1 files changed, 28 insertions, 0 deletions
diff --git a/mdoc/Test/ClassEnumerator.vb b/mdoc/Test/ClassEnumerator.vb
new file mode 100644
index 00000000..f970c0ae
--- /dev/null
+++ b/mdoc/Test/ClassEnumerator.vb
@@ -0,0 +1,28 @@
+Namespace CustomNamespace
+ Public NotInheritable Class ClassEnumerator
+ Implements CustomInterface
+
+ Public Shared Sub Main(ByVal cmdArgs() As String)
+
+ End Sub
+ Private Property CustomProp1 As Integer Implements CustomInterface.Prop1
+ Get
+ Return 0
+ End Get
+ Set(value As Integer)
+
+ End Set
+ End Property
+ Private ReadOnly Property CustomProp2 As Object Implements CustomInterface.Prop2
+ Get
+ Return 0
+ End Get
+ End Property
+ End Class
+
+ Public Interface CustomInterface
+ Property Prop1 As Int32
+ ReadOnly Property Prop2 As Object
+
+ End Interface
+End Namespace