using System;
public class Program
{
public static void Main()
// Reverse a string without using framework string helpers...
string text = "some string";
string reverse = string.Empty;
// make "reverse" = the reversed string of "text"
// ....
Console.Write(reverse); // gnirts emos
}