System.Web.Helpers.ServerInfo.InsertWhiteSpace C# (CSharp) Method

InsertWhiteSpace() private static method

Inserts spaces after ',' and ';' so table can be rendered properly.
private static InsertWhiteSpace ( string s ) : string
s string
return string
        private static string InsertWhiteSpace(string s)
        {
            return s.Replace(",", ", ").Replace(";", "; ");
        }
    }