AsyncMethodWpf.Service.ReverseStringImpl C# (CSharp) Method

ReverseStringImpl() private static method

private static ReverseStringImpl ( string input ) : string
input string
return string
        private static string ReverseStringImpl(string input)
        {
            Thread.Sleep(5000);
            return new String(input.Reverse().ToArray());
        }