Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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;
- }
|