public static void Main()
string message = string.Empty;
Program p = new Program();
message = p.reverese("Hello World. What happend to time ???@@");
Console.WriteLine(message);
public string reverese(string msg)
string message = string.Empty;
string [] str = msg.Split(' ');
for(int i=0; i <str.Length; i++)
char [] temp = str[i].ToCharArray();
message =message + " " + new string(temp);
message = new string(temp);