OpenTween.Api.TwitterApiException.FormatTwitterError C# (CSharp) Method

FormatTwitterError() private static method

private static FormatTwitterError ( TwitterError error ) : string
error TwitterError
return string
        private static string FormatTwitterError(TwitterError error)
            => string.Join(",", error.Errors.Select(x => x.ToString()));
    }