AsyncOverSimplified.SimpleAsyncWorker.GetCountAsync C# (CSharp) Method

GetCountAsync() private method

private GetCountAsync ( string v ) : Task
v string
return Task
        private async Task<int> GetCountAsync(string v)
        {
            await Task.Delay(100);
            return (int)v[0];
        }
    }