Swap
(XAPI2000)
Deklaration VB 6.0
Sub Swap (A As Integer, B As Integer)
Deklaration VB.NET
Sub Swap (ByRef A As Short, ByRef B As Short)
Beskrivning
Byter värde mellan två 16-bitars heltal.
Se även
SwapL |
Exempel (VB 6.0)
Dim X As Integer, Y As Integer
X = 10
Y = 20
Swap X, Y ' Byt värde mellan X och Y
|