TechTalk Genome v4.2

Set Subtraction Operator 

Returns the difference of two Sets.

public static Set operator -(
   Set left,
   Set right
);

Parameters

left
The Set from which right should be subtracted.
right
The Set which should be subtracted from left.

Return Value

A Set that contains all elements contained in left but not in right.

Exceptions

Exception TypeCondition
GenomeException

The source Sets are in different DataDomains.

or

The source Sets are not merge compatible. Two Sets are merge compatible, if both have the same ElementType and both have the same selector expressions.

ArgumentNullException Either left or rigth is a null reference.

Requirements

Namespace: TechTalk.Genome

Assembly: TechTalk.Genome (in TechTalk.Genome.dll)

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

Set Class | TechTalk.Genome Namespace | op_Subtraction | Subtraction