8 lines
134 B
VB.net
8 lines
134 B
VB.net
' Define 's'
|
|
Dim s AS String = "alphaBETA"
|
|
|
|
' Change 's' to Upper Case.
|
|
s = s.ToUpper()
|
|
|
|
' Change 's' to Lower Case.
|
|
s = s.ToLower()
|