C# 클래스 vlko.core.Tools.StringTool

Custom string utility methods.
파일 보기 프로젝트 열기: vlko/vlko

공개 메소드들

메소드 설명
SplitUpperCase ( string source ) : string[]

Parses a camel cased or pascal cased string and returns an array of the words within the string.

Truncate ( this source, int length ) : string

Get a substring of the first N characters.

메소드 상세

SplitUpperCase() 공개 정적인 메소드

Parses a camel cased or pascal cased string and returns an array of the words within the string.
public static SplitUpperCase ( string source ) : string[]
source string
리턴 string[]

Truncate() 공개 정적인 메소드

Get a substring of the first N characters.
public static Truncate ( this source, int length ) : string
source this
length int
리턴 string