// // XmlElementAttributes.cs: // // Author: // John Donagher (john@webmeta.com) // // (C) 2002 John Donagher // using System.Collections; using System; namespace System.Xml.Serialization { /// /// Summary description for XmlElementAttributes. /// public class XmlElementAttributes : CollectionBase { public XmlElementAttribute this [int index] { get { return (XmlElementAttribute)List [index]; } set { List [index] = value; } } public int Add (XmlElementAttribute attribute) { return List.Add (attribute); } } }