XmlDataContract_static.cs 343 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection;
  5. using System.Xml;
  6. namespace System.Runtime.Serialization
  7. {
  8. internal partial class XmlDataContract
  9. {
  10. internal CreateXmlSerializableDelegate GenerateCreateXmlSerializableDelegate()
  11. {
  12. throw new NotImplementedException ();
  13. }
  14. }
  15. }