C# 클래스 Felinesoft.UmbracoCodeFirst.Extensions.CasingExtensions

Extensions to convert strings between proper, pascal and camel case
파일 보기 프로젝트 열기: DanMannMann/UmbracoCodeFirst

공개 메소드들

메소드 설명
ToCamelCase ( this the_string ) : string

Convert the string to camel case

ToPascalCase ( this the_string ) : string

Convert the string to Pascal case.

ToProperCase ( this the_string ) : string

Capitalize the first character and add a space before each capitalized letter except the first character.

메소드 상세

ToCamelCase() 공개 정적인 메소드

Convert the string to camel case
public static ToCamelCase ( this the_string ) : string
the_string this
리턴 string

ToPascalCase() 공개 정적인 메소드

Convert the string to Pascal case.
public static ToPascalCase ( this the_string ) : string
the_string this
리턴 string

ToProperCase() 공개 정적인 메소드

Capitalize the first character and add a space before each capitalized letter except the first character.
public static ToProperCase ( this the_string ) : string
the_string this
리턴 string