public static string OrderWord(string _source){ char[] temp = _source.ToCharArray(); Array.Sort(temp); return temp.ToString();}