Hardly.Library.Twitch.TwitchHelpers.GetAllAsCsv C# (CSharp) Method

GetAllAsCsv() static private method

static private GetAllAsCsv ( TwitchUserInChannel followers ) : string
followers TwitchUserInChannel
return string
        internal static string GetAllAsCsv(TwitchUserInChannel[] followers)
        {
            string csv = "";
            if (followers != null)
            {
                for (int i = 0; i < followers.Length; i++)
                {
                    if (i > 0)
                    {
                        csv += ",";
                    }
                    csv += followers[i].user.userName;
                }
            }

            return csv;
        }
TwitchHelpers