AddRange

AddRange(IEnumerable<KeyValuePair<char, char>>)

Adds the specified collection of character replacements to this instance of the CharacterReplacementDictionary.

public void AddRange(IEnumerable<KeyValuePair<char, char>> characterReplacements)
Parameter Type Description
characterReplacements IEnumerable`1 The collection of character replacements to add to the dictionary.

See Also


AddRange(IEnumerable<KeyValuePair<int, int>>)

Adds the specified collection of Unicode code point replacements to this instance of the CharacterReplacementDictionary.

public void AddRange(IEnumerable<KeyValuePair<int, int>> characterReplacements)
Parameter Type Description
characterReplacements IEnumerable`1 The collection of Unicode code point replacements to add to the dictionary.

See Also


AddRange(IEnumerable<CharacterReplacementPair>)

Adds the specified collection of character replacements to this instance of the CharacterReplacementDictionary.

public void AddRange(IEnumerable<CharacterReplacementPair> characterReplacements)
Parameter Type Description
characterReplacements IEnumerable`1 The collection of character replacements to add to the dictionary.

See Also


AddRange(CharacterReplacementPair[])

Adds the specified collection of character replacements to this instance of the CharacterReplacementDictionary.

public void AddRange(CharacterReplacementPair[] characterReplacements)
Parameter Type Description
characterReplacements CharacterReplacementPair[] The collection of character replacements to add to the dictionary.

See Also