Table of Contents

Class HelpersExtensions

Namespace
CMS.Helpers
Assembly
CMS.Helpers.dll

Extension methods.

public static class HelpersExtensions
Inheritance
object
HelpersExtensions

Methods

Append(StringBuilder, params object[])

Appends the specified items to the string builder.

public static void Append(this StringBuilder sb, params object[] parts)

Parameters

sb StringBuilder

String builder object

parts object[]

Objects to append

Join(IEnumerable<string>, string)

Joins the given list of values with a given separator.

public static string Join(this IEnumerable<string> values, string separator)

Parameters

values IEnumerable<string>

Values

separator string

Separator

Returns

string

Remarks

Null entries from input are skipped. Returns empty string if values is null. Consider using framework method string.Join(string, System.Collections.Generic.IEnumerable<string>)

Truncate(string, int)

Truncates string to specified length.

public static string Truncate(this string str, int length)

Parameters

str string

Given string

length int

Length to truncate string to

Returns

string

Truncated string.

TryReadXml(DataSet, string)

Tries to read xml and load the data from it to the DataSet via standard .NET method. If the load fails, it removes all the forbidden whitespace characters and tries it again.

[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 3)]
public static void TryReadXml(this DataSet ds, string xml)

Parameters

ds DataSet

DataSet to fill

xml string

XML with data