XmlConvert.cs 246 B

1234567891011121314151617
  1. //
  2. // XmlConvert.cs: Xml data type conversion
  3. //
  4. // Only a stub for now
  5. //
  6. using System;
  7. namespace System.Xml {
  8. public class XmlConvert {
  9. public static string VerifyNCName (string name)
  10. {
  11. throw new NotImplementedException ();
  12. }
  13. }
  14. }