wow-hermesproxy/Framework/Util/Utility.cs
2022-04-14 04:49:28 +03:00

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;
}
}