mirror of
https://github.com/WowLegacyCore/HermesProxy
synced 2026-08-14 20:32:05 -04:00
16 lines
No EOL
291 B
C#
16 lines
No EOL
291 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
public static class Utility
|
|
{
|
|
public static void Swap<T>(ref T lhs, ref T rhs)
|
|
{
|
|
T temp;
|
|
temp = lhs;
|
|
lhs = rhs;
|
|
rhs = temp;
|
|
}
|
|
} |