18
XmlSerializer дає FileNotFoundException у конструкторі
Програма, з якою я працював, не працює, коли я намагаюся серіалізувати типи. Заява на кшталт XmlSerializer lizer = new XmlSerializer(typeof(MyType)); виробляє: 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" FileName="[Containing …
347
c#
xml-serialization