RosettaCodeData/Task/Generic-swap/Visual-Basic-.NET/generic-swap-1.visual

6 lines
91 B
Text
Raw Permalink Normal View History

2020-02-17 23:21:07 -08:00
Sub Swap(Of T)(ByRef a As T, ByRef b As T)
Dim temp = a
a = b
b = temp
End Sub