Patterns: WIP Patterns version 2

This commit is contained in:
Jonathan Jenne
2021-10-13 10:36:10 +02:00
parent 6b8d376656
commit 1c3e0b175b
11 changed files with 539 additions and 84 deletions

View File

@@ -0,0 +1,13 @@
Public Class Pattern
Public ReadOnly Property Type As String
Public ReadOnly Property Value As String
Public Sub New(pType As String, pValue As String)
Me.Type = pType
Me.Value = pValue
End Sub
Public Overrides Function ToString() As String
Return $"{{#{Type}#{Value}}}"
End Function
End Class