using System; [Serializable] public struct XMLAttribute { public XMLAttribute(string name, string value) { this.name = name; this.value = value; } public XMLAttribute(string name) { this.name = name; this.value = string.Empty; } public override string ToString() { return this.value; } public string name; public string value; }