Collections Data Structure C#

//http://isotopescreencapture.codeplex.com/
//The MIT License (MIT)
using System.Collections.Generic;
namespace Isotope.Xml.Extensions
{
    public static class XmlNodeListExtensions
    {
        public static IEnumerable AsEnumerable(this System.Xml.XmlNodeList nodelist)
        {
            foreach (System.Xml.XmlNode node in nodelist)
            {
                yield return node;
            }
        }
    }
}