System.Web.Helpers.ServerInfo.InsertWhiteSpace C# (CSharp) Метод

InsertWhiteSpace() приватный статический Метод

Inserts spaces after ',' and ';' so table can be rendered properly.
private static InsertWhiteSpace ( string s ) : string
s string
Результат string
        private static string InsertWhiteSpace(string s)
        {
            return s.Replace(",", ", ").Replace(";", "; ");
        }
    }