BitonicSort.Program.CSwap C# (CSharp) Method

CSwap() static private method

static private CSwap ( int &a, int &b ) : void
a int
b int
return void
		static void CSwap ( ref int a, ref int b )
		{
			if (a>b) {
				int t = a;
				a = b;
				b = t;
			}
		}