C# Класс vlko.core.Tools.StringTool

Custom string utility methods.
Показать файл Открыть проект

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

Метод Описание
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