static void Main(string[] args) { MergeSort ms = new MergeSort(); ms.SortArray(0, ms.data.Length - 1); ms.Display(); Console.Read(); }