show/hide this revision's text 2 Added blog link

If the string contains Unicode data (strictly speaking, non-BMP characters) the other methods that have been posted will corrupt it, because you cannot swap the order of high and low surrogate code units when reversing the string. (More information about this can be found on my blog.)

The following code sample will correctly reverse a string that contains non-BMP characters, e.g., "\U00010380\U00010381" (Ugaritic Letter Alpa, Ugaritic Letter Beta).

public static string Reverse(this string input)
{
    if (input == null)
    	throw new ArgumentNullException("input");

    // allocate a buffer to hold the output
    char[] output = new char[input.Length];
    for (int outputIndex = 0, inputIndex = input.Length - 1; outputIndex < input.Length; outputIndex++, inputIndex--)
    {
    	// check for surrogate pair
    	if (input[inputIndex] >= 0xDC00 && input[inputIndex] <= 0xDFFF &&
    		inputIndex > 0 && input[inputIndex - 1] >= 0xD800 && input[inputIndex - 1] <= 0xDBFF)
    	{
    		// preserve the order of the surrogate pair code units
    		output[outputIndex + 1] = input[inputIndex];
    		output[outputIndex] = input[inputIndex - 1];
    		outputIndex++;
    		inputIndex--;
    	}
    	else
    	{
    		output[outputIndex] = input[inputIndex];
    	}
    }

    return new string(output);
}
show/hide this revision's text 1

If the string contains Unicode data (strictly speaking, non-BMP characters) the other methods that have been posted will corrupt it, because you cannot swap the order of high and low surrogate code units when reversing the string.

The following code sample will correctly reverse a string that contains non-BMP characters, e.g., "\U00010380\U00010381" (Ugaritic Letter Alpa, Ugaritic Letter Beta).

public static string Reverse(this string input)
{
    if (input == null)
    	throw new ArgumentNullException("input");

    // allocate a buffer to hold the output
    char[] output = new char[input.Length];
    for (int outputIndex = 0, inputIndex = input.Length - 1; outputIndex < input.Length; outputIndex++, inputIndex--)
    {
    	// check for surrogate pair
    	if (input[inputIndex] >= 0xDC00 && input[inputIndex] <= 0xDFFF &&
    		inputIndex > 0 && input[inputIndex - 1] >= 0xD800 && input[inputIndex - 1] <= 0xDBFF)
    	{
    		// preserve the order of the surrogate pair code units
    		output[outputIndex + 1] = input[inputIndex];
    		output[outputIndex] = input[inputIndex - 1];
    		outputIndex++;
    		inputIndex--;
    	}
    	else
    	{
    		output[outputIndex] = input[inputIndex];
    	}
    }

    return new string(output);
}