public static void Swap(ref int a, ref int b) {
public static void Swap(ref string a, ref string b) {
public static void Main() {
Maths.Swap(ref twenty, ref thirty);
Console.WriteLine("twenty = {0}", twenty);
Console.WriteLine("thirty = {0}", thirty);
Maths.Swap(ref forty, ref fifty);
Console.WriteLine("forty = {0}", forty);
Console.WriteLine("fifty = {0}", fifty);