|
Range<T> .Merge(Range<T> , IComparer<T> ) Method
|
Merges two ranges into one range that fully encompasses both ranges.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.242-beta+5de70bd1c87865d409ebc16b8886196644c0c750
Syntaxfunction Merge(range, comparer);
View SourceParameters
- range Range<T>
- The range to be merged with this one.
- comparer IComparer<T>
- The comparer used to compare objects of type T.
Return Value
Range<T>The range that fully encompasses the merged ranges.
See Also