String inverse

in ita •  last month 

using System;

public static class ReverseString
{
public static string Reverse(string input)
{
char [] cArray = input.ToCharArray();
string reverse = String.Empty;
for (int i = input.Length - 1; i >= 0; i--)
{
reverse += cArray[i];
}
return reverse;
}

}
return result;
}
}

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!