C# 클래스 FileScanner.FileParsing.ParseStrategyExtensions

Extends the IParseStrategy interface to make usage more intuitive and simple - uses the decorator pattern.
파일 보기 프로젝트 열기: kzemek/FileScanner

공개 메소드들

메소드 설명
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