9 lines
134 B
VB.net
9 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()
|