XmlSerializer construction with same named extra types
- by NoizWaves
Hey, I am hitting trouble constructing an XmlSerializer where the extra types contains types with the same Name (but unique Fullname). Below is an example that illustrated my scenario.
Type definitions in external assembly I cannot manipulate:
public static class Wheel
{
public enum Status { Stopped, Spinning }
}
public static class Engine
{
…