18
XmlSerializer dando FileNotFoundException en el constructor
Una aplicación con la que he estado trabajando falla cuando intento serializar tipos. Una declaración como XmlSerializer lizer = new XmlSerializer(typeof(MyType)); produce: System.IO.FileNotFoundException occurred Message="Could not load file or assembly '[Containing Assembly of MyType].XmlSerializers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified." Source="mscorlib" …
347
c#
xml-serialization