Collections Data Structure C#

using System;
using System.Collections.Generic;
using System.Collections;
  public static class CollectionUtils
  {
    public static IEnumerable Convert(IEnumerable oldStyleSrc) where T : class
    {
      foreach (object o in oldStyleSrc)
      {
        T elem = o as T;
        if (elem != null)
          yield return elem;
      }
    }
  }