public static void strReverse(string value) { int strLength = value.Length - 1; string reverse = null; while (strLength >= 0) { reverse = reverse + value[strLength]; strLength--; } Console.WriteLine(reverse); }Thanks, Karthik KK
public static void strReverse(string value) { int strLength = value.Length - 1; string reverse = null; while (strLength >= 0) { reverse = reverse + value[strLength]; strLength--; } Console.WriteLine(reverse); }Thanks, Karthik KK