Files
Mister-Joe-PositiveIntent/PositiveIntent/StringHelper.cs
T
2024-10-10 22:54:55 -05:00

15 lines
365 B
C#

using System;
namespace PositiveIntent
{
public class StringHelper
{
// This function will reverse the string at runtime
public static string Reverse(string input)
{
char[] charArray = input.ToCharArray();
Array.Reverse(charArray);
return new string(charArray);
}
}
}