Table of Contents

Class ConditionExtensions

Namespace
Cuemon.Extensions
Assembly
Cuemon.Extensions.Core.dll

Extension methods for the Condition class.

public static class ConditionExtensions
Inheritance
Object
ConditionExtensions

Methods

HasDifference(Condition, String, String, out String)

Determines whether there is a set difference between second and first.

public static bool HasDifference(this Condition _, string first, string second, out string difference)

Parameters

_ Condition

The Condition to extend.

first String

The value where characters that are not also in second will be returned.

second String

The value to compare with first.

difference String

The set difference between second and first or System.String.Empty if no difference.

Returns

Boolean

true if there is a set difference between second and first; otherwise false.