XmlDictionaryString.cs 584 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections;
  3. namespace System.Xml
  4. {
  5. public class XmlDictionaryString
  6. {
  7. IXmlDictionary dict;
  8. string value;
  9. int key;
  10. public XmlDictionaryString (IXmlDictionary dictionary,
  11. string value, int key)
  12. {
  13. this.dict = dictionary;
  14. this.value = value;
  15. this.key = key;
  16. }
  17. public IXmlDictionary Dictionary {
  18. get { return dict; }
  19. }
  20. public int Key {
  21. get { return key; }
  22. }
  23. public string Value {
  24. get { return value; }
  25. }
  26. [MonoTODO]
  27. public override string ToString ()
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. }
  32. }