Merge pull request #3921 from tomperr/fix/3795_class_tilde_visibility

fix(generic): fix generic type detection
This commit is contained in:
Sidharth Vinod
2022-12-24 00:33:39 +05:30
committed by GitHub
5 changed files with 30 additions and 6 deletions

View File

@@ -138,7 +138,20 @@
Pineapple : -int leafCount()
Pineapple : -int spikeCount()
</pre>
<hr />
<pre class="mermaid">
classDiagram
class Person {
+Id : Guid
+FirstName : string
+LastName : string
-privateProperty : string
#ProtectedProperty : string
~InternalProperty : string
~AnotherInternalProperty : List~List~string~~
}
</pre>
<hr />
<script src="./mermaid.js"></script>