C# Класс FileScanner.FileParsing.ParseStrategyExtensions

Extends the IParseStrategy interface to make usage more intuitive and simple - uses the decorator pattern.
Показать файл Открыть проект

Открытые методы

Метод Описание
ReplaceCapitalLetters ( this parseStrategy ) : IParseStrategy

Enables replacing uppercase letters with their lowercase equivalents using the decorator pattern.

ReplaceNonASCII ( this parseStrategy ) : IParseStrategy

Enables replacing non ascii letters with diacritic-less equivalents.

Описание методов

ReplaceCapitalLetters() публичный статический Метод

Enables replacing uppercase letters with their lowercase equivalents using the decorator pattern.
public static ReplaceCapitalLetters ( this parseStrategy ) : IParseStrategy
parseStrategy this The parse strategy on which we deployed the function.
Результат IParseStrategy

ReplaceNonASCII() публичный статический Метод

Enables replacing non ascii letters with diacritic-less equivalents.
public static ReplaceNonASCII ( this parseStrategy ) : IParseStrategy
parseStrategy this The parse strategy on which we deployed the function.
Результат IParseStrategy