C# Класс Commencement.Controllers.Helpers.StringExtension

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

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

Метод Описание
IndexOfAll ( this source, string searchTerm ) : IEnumerable

Returns the index of all occurances of a specific string

Code taken from: http://www.dijksterhuis.org/manipulating-strings-in-csharp-finding-all-occurrences-of-a-string-within-another-string/

IsNullOrEmpty ( this source, bool checkForSpacesOnly ) : bool

Determines whether [is null or empty] [the specified source].

UpperFirstLetter ( this source, UpperFirstLetterOptions options ) : string

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

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

Returns the index of all occurances of a specific string
Code taken from: http://www.dijksterhuis.org/manipulating-strings-in-csharp-finding-all-occurrences-of-a-string-within-another-string/
public static IndexOfAll ( this source, string searchTerm ) : IEnumerable
source this
searchTerm string
Результат IEnumerable

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

Determines whether [is null or empty] [the specified source].
public static IsNullOrEmpty ( this source, bool checkForSpacesOnly ) : bool
source this The source.
checkForSpacesOnly bool if set to true [check for spaces only].
Результат bool

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

public static UpperFirstLetter ( this source, UpperFirstLetterOptions options ) : string
source this
options UpperFirstLetterOptions
Результат string