RosettaCodeData/Task/Generic-swap/Visual-Basic-.NET/generic-swap-1.visual
2020-02-17 23:21:07 -08:00

5 lines
91 B
Text

Sub Swap(Of T)(ByRef a As T, ByRef b As T)
Dim temp = a
a = b
b = temp
End Sub