C# Class UnityContrib.UnityEngine.StringEx

Provides a set of helper methods for working with the T:System.String class.
Afficher le fichier Open project: UnityContrib/framework

Méthodes publiques

Méthode Description
Contains ( this text, string value, System.StringComparison comparisonType ) : bool

Returns a value indicating whether a specified substring occurs within this string.

Method Details

Contains() public static méthode

Returns a value indicating whether a specified substring occurs within this string.
public static Contains ( this text, string value, System.StringComparison comparisonType ) : bool
text this /// The string to search in. ///
value string /// The string to seek. ///
comparisonType System.StringComparison /// One of the enumeration values that specifies the rules for the search. ///
Résultat bool