Initializes a new instance of the
PairChar class with specified left and right characters.
Syntax
'Declaration
Public Function New( _
ByVal As Char, _
ByVal As Char _
)
'Usage
Dim left As Char
Dim right As Char
Dim instance As New PairChar(left, right)
public PairChar(
char ,
char
)
Parameters
- left
- The left character of the pair.
- right
- The right character of the pair.
See Also