Firstly you don't need to call `ToCharArray` as a string can already be indexed as a char array, so this will save you an allocation.
The next optimisation is to use a `StringBuilder` to prevent unnecessary allocations (as strings are immutable, concatenating them makes a copy of the string each time). To further optimise this we pre-set the length of the `StringBuilder` so it won't need to expand its buffer.
public string Reverse(string text)
{
if (string.IsNullOrEmpty(text))
{
return text;
}
StringBuilder builder = new StringBuilder(text.Length);
for (int i = text.Length - 1; i >= 0; i--)
{
builder.Append(text[i]);
}
return builder.ToString();
}
Note that this method is optimised for performance rather than simplicity; I can't think of a way to make it quicker without using the internal unsafe string APIs though I'm interested to hear if anyone can think of a faster method. As others have said you can simply use `Array.Reverse` if you value simplicity over performance.