C# Класс Hypermedia.Json.StringExtensions

Показать файл Открыть проект

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

Метод Описание
Join ( this parts, string separator ) : string

Join the string parts with the given separator.

SplitAt ( this input, bool>.Func predicate ) : IEnumerable

Split the input based on upper-case character boundaries.

ToLowerCase ( this parts ) : IEnumerable

Returns the sequence of input's as a sequence of lower case strings.

Приватные методы

Метод Описание
CamelCase ( string input ) : string

Convert the given input string to a camel case representation.

Camelize ( this parts ) : string

Convert a dasherized string input into a camel case representation.

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

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

Join the string parts with the given separator.
public static Join ( this parts, string separator ) : string
parts this The string parts to join.
separator string The separator to join the string parts with.
Результат string

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

Split the input based on upper-case character boundaries.
public static SplitAt ( this input, bool>.Func predicate ) : IEnumerable
input this The input to split.
predicate bool>.Func The predicate to match to determine the split.
Результат IEnumerable

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

Returns the sequence of input's as a sequence of lower case strings.
public static ToLowerCase ( this parts ) : IEnumerable
parts this The input parts to return as a lower case sequence.
Результат IEnumerable