using System;
public class Program
{
public static void Main()
string[] str = new string[] {"Dhoni", "Raina", "Jadeja", "Albie"};
int cnt = str.Length - 1;
for(int i = 0; i < cnt; i++)
for(int j = cnt; j > i; j--)
if(((IComparable)str[j-1]).CompareTo(str[j])>0)
var temp = str[j-1];
str[j-1] = str[j];
str[j] = temp;
}
foreach(var item in str)
Console.WriteLine(item);