| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // XmlElementAttributes.cs:
- //
- // Author:
- // John Donagher ([email protected])
- //
- // (C) 2002 John Donagher
- //
- using System.Collections;
- using System;
- namespace System.Xml.Serialization
- {
- /// <summary>
- /// Summary description for XmlElementAttributes.
- /// </summary>
- 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);
- }
- }
- }
|