18
XmlSerializer dando FileNotFoundException no construtor
Um aplicativo com o qual estou trabalhando está falhando quando tento serializar tipos. Uma declaração como XmlSerializer lizer = new XmlSerializer(typeof(MyType)); produz: 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