StringSetIntersection Method (StringSet, StringComparisonTypes, StringComparison) |
Create a new StringSet containing the intersection of the current StringSet and the specified StringSet
per the specified string comparison options.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public StringSet Intersection(
StringSet set,
StringComparisonTypes compare,
StringComparison comparisonType
)
Public Function Intersection (
set As StringSet,
compare As StringComparisonTypes,
comparisonType As StringComparison
) As StringSet
Parameters
- set
- Type: NetQuarryStringSet
The StringSet with which to intersect. - compare
- Type: NetQuarryStringComparisonTypes
The type of string comparison to use (e.g. equals or contains). - comparisonType
- Type: SystemStringComparison
The string comparison to use (specifically case-sensitivity and culture).
Return Value
Type:
StringSetA new StringSet containing the intersection.
See Also