Determines whether the collection contains the specified element : IEnumerable « Collections Data Structure « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Collections Data Structure » IEnumerableScreenshots 
Determines whether the collection contains the specified element
 

/*
 * Copyright  2002-2005 the original author or authors.
 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 
 *      http://www.apache.org/licenses/LICENSE-2.0
 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;

namespace Spring.Util.Generic
{
  /// <summary>
  /// Miscellaneous generic collection utility methods.
  /// </summary>
  /// <remarks>
  /// Mainly for internal use within the framework.
  /// </remarks>
  /// <author>Mark Pollack (.NET)</author>
  public sealed class CollectionUtils
  {
    /// <summary>
    /// Determines whether the <paramref name="collection"/> contains the specified <paramref name="element"/>.
    /// </summary>
    /// <param name="collection">The collection to check.</param>
    /// <param name="element">The object to locate in the collection.</param>
    /// <returns><see lang="true"/> if the element is in the collection, <see lang="false"/> otherwise.</returns>
    public static bool Contains<T>(ICollection<T> collection, Object element)
    {
      if (collection == null)
      {
        throw new ArgumentNullException("Collection cannot be null.");
      }
      MethodInfo method;
      method = collection.GetType().GetMethod("contains", BindingFlags.IgnoreCase | BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public);
      if (null == method)
      {
        throw new InvalidOperationException("Collection type " + collection.GetType() " does not implement a Contains() method.");
      }
      return (boolmethod.Invoke(collection, new Object[] {element});
    }
   }
}

   
  
Related examples in the same category
1.Determines whether the specified collection is null or empty.
2.Determines whether the collection contains all the elements in the specified collection.
3.Aggregate IEnumerable
4.Convert IEnumerable To DataTable
5.Convert IEnumerable by Func
6.Split IEnumerable
7.Shuffle IEnumerable
8.For each IEnumerable
9.Sleep before yield each element in IEnumerable
10.Add WhereIf to IEnumerable
11.Add OrderBy to IEnumerable
12.Add Repeat extension to IEnumerable
13.Yield element in IEnumerable until Predicate
14.IEnumerable extension for get second and third element
15.Simple function to determine if an item is an IEnumerable
16.Object class extension for IEnumerable, IComparable and where
17.Output DataTable and IEnumerable to console
18.Convert IEnumerable to String
19.Convert XmlNodeList to IEnumerable
20.Returns the first element contained in both, source and candidates.
21.Given a range (start,end) and a number of steps, will yield that a number for each step
22.Compares two sequences.
23.Empty Enumerable/Enumerator
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.