Can this be cleaned up?
using System; class AscendingBubbleSort { public static void Main() { int i = 0,j = 0,t = 0; int []c=
The most elegant way to sort in C# is
Array.Sort( object[] )
That will work everywhere except in homework problems where the teacher asked you to implement the non-elegant bubble sort algorithm. ;-)