18
생성자에서 FileNotFoundException을 제공하는 XmlSerializer
유형을 직렬화하려고 할 때 작업했던 응용 프로그램이 실패합니다. 다음과 같은 진술 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 Assembly of MyType].XmlSerializers, …
347
c#
xml-serialization