Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- 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;
- }
|