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();
    }