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

6 lines
91 B
VB.net

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