Table of Contents

Class BaseExtensions

Namespace
CMS.Base
Assembly
CMS.Base.dll

Extension methods.

public static class BaseExtensions
Inheritance
object
BaseExtensions

Methods

AsDataContainer(DataRow)

Converts a DataRow to IDataContainer. Returns null if the original data row is null.

public static IDataContainer AsDataContainer(this DataRow dr)

Parameters

dr DataRow

Data row

Returns

IDataContainer

Batch<T>(IEnumerable<T>, int)

Returns input in batches of batchSize size.

public static IEnumerable<IEnumerable<T>> Batch<T>(this IEnumerable<T> collection, int batchSize)

Parameters

collection IEnumerable<T>

Collection to be batched

batchSize int

Size of each chunk (except for the last one)

Returns

IEnumerable<IEnumerable<T>>

Type Parameters

T

Replace(Regex, string, string, bool)

Replaces a re

public static string Replace(this Regex regEx, string input, string replacement, bool allowSubstitutions)

Parameters

regEx Regex

Regular expression

input string

Input text to replace

replacement string

Replacement string

allowSubstitutions bool

If set to false, substitutions are not allowed within the replacement string

Returns

string