| 
            
              CollectionExtensionsMajorityT(IEnumerableT, Boolean, IEqualityComparerT) Method
             | 
          
        
        
            Returns the majority value in the collection, or default type value if no item represents the majority.
            
        
        Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
SyntaxJavaScript does not support generic types or methods.
 View SourceParameters
- source  IEnumerableT
 - An enumeration over which to find the majority element.
 - forwardSearch  Boolean  (Optional)
 - true to search forward in source; otherwise false to search backwards.
 - comparer  IEqualityComparerT  (Optional)
 - The IEqualityComparerT implementation to use when comparing keys, or null to use the default comparer for the type of the key.
 
Type Parameters
- T
 - Type of elements in the source.
 
Return Value
TThe majority value in the collection.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
See Also