C# Class AK.F1.Timing.Extensions.StringExtensions

System.String extension class. This class is .
Show file Open project: simoneb/ak-f1-timing

Public Methods

Method Description
OrdinalEndsWith ( this x, string y ) : bool

Returns a value indicating if x ends with y. The comparison is made using ordinal sorting rules.

OrdinalEquals ( this x, string y ) : bool

Returns a value indicating equality with the other instance. The comparison is made using ordinal sorting rules.

Method Details

OrdinalEndsWith() public static method

Returns a value indicating if x ends with y. The comparison is made using ordinal sorting rules.
/// Thrown when is . ///
public static OrdinalEndsWith ( this x, string y ) : bool
x this The string to compare to .
y string The string to compare to .
return bool

OrdinalEquals() public static method

Returns a value indicating equality with the other instance. The comparison is made using ordinal sorting rules.
/// Thrown when is . ///
public static OrdinalEquals ( this x, string y ) : bool
x this The string to compare to .
y string The string to compare to .
return bool