I always confuse AsQueryable, AsEnumerable. When should I use them? Should I use AsQueryable to create a LINQ statement to create a filter according to the xml or AsEnumerable attribute?
[Serializable] public class LogHandler : IConfigurationSectionHandler { public object Create(object parent, object configContext, XmlNode section) { XmlAttributeCollection v = section.Attributes; } }
source share