using System.Xml.Serialization;
public static void Main()
var importer = new XmlReflectionImporter();
var mapping = importer.ImportTypeMapping(typeof(MyClass));
var schemas = new XmlSchemas();
var exporter = new XmlSchemaExporter(schemas);
exporter.ExportTypeMapping(mapping);
var serializer = new XmlSerializer(typeof(XmlSchemas));
var sb = new StringBuilder();
using(var writer = new StringWriter(sb))
serializer.Serialize(writer, schemas);
Console.WriteLine(sb.ToString());
public string MyString { get; set; }
public string? MyNullableString { get; set; }
public int MyInteger { get; set; }
public int? MyNullableInteger { get; set; }
public MySubClass MySubClass { get; set; }
[XmlElement(ElementName = "Option1", Type = typeof(MyOption1))]
[XmlElement(ElementName = "Option2", Type = typeof(MyOption2))]
public object Option { get; set; }
public MyGenericContainer<MyGeneric, MySubClass> Container { get; set; }
[XmlArrayItem("anyType", typeof(string))]
[XmlArrayItem("BaR", typeof(int))]
public object[] MyArray { get; set; }
public string Name { get; set; }
public string Option1Value { get; set; }
public string Option2Value { get; set; }
public class MyGenericContainer<T1, T2> where T1 : class where T2 : class
public T1 Nested1 { get; set; }
public T2 Nested2 { get; set; }
public string Genric { get; set; }