C# 클래스 Hypermedia.Json.StringExtensions

파일 보기 프로젝트 열기: cosullivan/Hypermedia

공개 메소드들

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