You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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;
- }
|