12 references to Compare
Microsoft.Maui (12)
Converters\EasingTypeConverter.cs (12)
30 if (parts.Length == 2 && Compare(parts[0], nameof(Easing))) 35 _ when Compare(strValue, nameof(Linear)) => Linear, 36 _ when Compare(strValue, nameof(SinIn)) => SinIn, 37 _ when Compare(strValue, nameof(SinOut)) => SinOut, 38 _ when Compare(strValue, nameof(SinInOut)) => SinInOut, 39 _ when Compare(strValue, nameof(CubicIn)) => CubicIn, 40 _ when Compare(strValue, nameof(CubicOut)) => CubicOut, 41 _ when Compare(strValue, nameof(CubicInOut)) => CubicInOut, 42 _ when Compare(strValue, nameof(BounceIn)) => BounceIn, 43 _ when Compare(strValue, nameof(BounceOut)) => BounceOut, 44 _ when Compare(strValue, nameof(SpringIn)) => SpringIn, 45 _ when Compare(strValue, nameof(SpringOut)) => SpringOut,