C# 클래스 Cruncher.Extensions.StringExtensions

Encapsulates a series of time saving extension methods to Strings.
파일 보기 프로젝트 열기: JimBobSquarePants/Cruncher

공개 메소드들

메소드 설명
Contains ( this expression, string value, System.StringComparison comparisonType ) : bool

Specifies whether a string contains another string dependent on the given comparison enumeration.

IsValidVirtualPathName ( this expression ) : bool

Checks the string to see whether the value is a valid virtual path name.

ToMd5Fingerprint ( this expression ) : string

Creates an MD5 fingerprint of the String.

메소드 상세

Contains() 공개 정적인 메소드

Specifies whether a string contains another string dependent on the given comparison enumeration.
public static Contains ( this expression, string value, System.StringComparison comparisonType ) : bool
expression this The String instance that this method extends.
value string The string value to search for.
comparisonType System.StringComparison The string comparer to determine comparison rules.
리턴 bool

IsValidVirtualPathName() 공개 정적인 메소드

Checks the string to see whether the value is a valid virtual path name.
public static IsValidVirtualPathName ( this expression ) : bool
expression this The String instance that this method extends.
리턴 bool

ToMd5Fingerprint() 공개 정적인 메소드

Creates an MD5 fingerprint of the String.
public static ToMd5Fingerprint ( this expression ) : string
expression this The String instance that this method extends.
리턴 string