Class HelpersExtensions
Extension methods.
public static class HelpersExtensions
- Inheritance
-
objectHelpersExtensions
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
StringBuilderString 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
stringSeparator
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
stringGiven string
length
intLength 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
DataSetDataSet to fill
xml
stringXML with data