NormalizedSpanCollection.Difference Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Finds the difference between two sets. The difference is defined as everything in the first span set that is not in the second span set.
public:
static Microsoft::VisualStudio::Text::NormalizedSpanCollection ^ Difference(Microsoft::VisualStudio::Text::NormalizedSpanCollection ^ left, Microsoft::VisualStudio::Text::NormalizedSpanCollection ^ right);
public static Microsoft.VisualStudio.Text.NormalizedSpanCollection Difference (Microsoft.VisualStudio.Text.NormalizedSpanCollection left, Microsoft.VisualStudio.Text.NormalizedSpanCollection right);
static member Difference : Microsoft.VisualStudio.Text.NormalizedSpanCollection * Microsoft.VisualStudio.Text.NormalizedSpanCollection -> Microsoft.VisualStudio.Text.NormalizedSpanCollection
Public Shared Function Difference (left As NormalizedSpanCollection, right As NormalizedSpanCollection) As NormalizedSpanCollection
Parameters
The first span set.
- right
- NormalizedSpanCollection
The second span set.
Returns
The new span set that corresponds to the difference between left
and right
.
Exceptions
right
is null.
Remarks
Empty spans in the second set do not affect the first set at all. This method returns empty spans in the first set that are not contained by any set in the second set.