5 lines
91 B
Text
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
|