UtilDebugSwapObjects(Object, Object) Method
Swaps the given objects.
Namespace: DevCase.Core.Diagnostics.Debugging.CommonAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void SwapObjects(
ref Object refObj1,
ref Object refObj2
)
Public Shared Sub SwapObjects (
ByRef refObj1 As Object,
ByRef refObj2 As Object
)
Dim refObj1 As Object
Dim refObj2 As Object
UtilDebug.SwapObjects(refObj1, refObj2)
public:
static void SwapObjects(
Object^% refObj1,
Object^% refObj2
)
static member SwapObjects :
refObj1 : Object byref *
refObj2 : Object byref -> unit
No code example is currently available or this language may not be supported.
Parameters
- refObj1 Object
-
The first object.
- refObj2 Object
-
The second object.
This is a code example.
No code example is currently available or this language may not be supported.
Dim a As Integer = 10
Dim b As Integer = 20
SwapObjects(a, b)
Console.WriteLine("a: {0}, b: {1}", a, b)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.