RemoveRange

RemoveRange(IEnumerable<char>)

Removes the specified collection of character replacements from this instance of the CharacterReplacementDictionary.

public void RemoveRange(IEnumerable<char> characters)
Parameter Type Description
characters IEnumerable`1 The collection of characters to remove.

See Also


RemoveRange(IEnumerable<int>)

Removes the specified collection of Unicode code points replacements from this instance of the CharacterReplacementDictionary.

public void RemoveRange(IEnumerable<int> codePoints)
Parameter Type Description
codePoints IEnumerable`1 The collection of Unicode code points to remove.

See Also


RemoveRange(char[])

Removes the specified collection of character replacements from this instance of the CharacterReplacementDictionary.

public void RemoveRange(char[] characters)
Parameter Type Description
characters Char[] The collection of characters to remove.

See Also


RemoveRange(int[])

Removes the specified collection of Unicode code points replacements from this instance of the CharacterReplacementDictionary.

public void RemoveRange(int[] codePoints)
Parameter Type Description
codePoints Int32[] The collection of Unicode code points to remove.

See Also