| 1234567891011121314151617 |
- //
- // XmlConvert.cs: Xml data type conversion
- //
- // Only a stub for now
- //
- using System;
- namespace System.Xml {
- public class XmlConvert {
- public static string VerifyNCName (string name)
- {
- throw new NotImplementedException ();
- }
- }
- }
|