YamlDotNet 序列化程序构造函数抛出异常
YamlDotNet Serializer constructor throws exception
我必须遵循 YamlDotNet 文档中的代码 https://dotnetfiddle.net/QlqGDV
using System.Collections.Generic;
using System.IO;
using System;
using YamlDotNet.Serialization;
public class ALogger {
public function writeFile() {
using (var sw = new StreamWriter(_logFileCasesPath + @"\" + _logCaseName))
{
var ser = new Serializer();
ser.Serialize(sw, _logCase);
}
}
}
但是新的 Serializer 抛出了那个异常,我不知道为什么。我没有找到该异常消息的任何提示。
Ein Ausnahmefehler des Typs "System.MissingMethodException" ist in InnoTest.exe aufgetreten.
Zusätzliche Informationen: Methode nicht gefunden: "Void YamlDotNet.Serialization.Serializer..ctor(YamlDotNet.Serialization.SerializationOptions, YamlDotNet.Serialization.INamingConvention, YamlDotNet.Serialization.YamlAttributeOverrides)".
另一个使用的框架已经在 3.8 版本中包含了 YamlDotNet,但我使用的是 3.9,所以有冲突,但编译器没有找到。仅在运行时出现异常。
清理编辑:
我设法让两个库都达到了相同的版本,但效果很好。然后我与 nuget 包的开发人员交谈,让他们使用 nuget 功能进行正确的依赖管理。
我必须遵循 YamlDotNet 文档中的代码 https://dotnetfiddle.net/QlqGDV
using System.Collections.Generic;
using System.IO;
using System;
using YamlDotNet.Serialization;
public class ALogger {
public function writeFile() {
using (var sw = new StreamWriter(_logFileCasesPath + @"\" + _logCaseName))
{
var ser = new Serializer();
ser.Serialize(sw, _logCase);
}
}
}
但是新的 Serializer 抛出了那个异常,我不知道为什么。我没有找到该异常消息的任何提示。
Ein Ausnahmefehler des Typs "System.MissingMethodException" ist in InnoTest.exe aufgetreten.
Zusätzliche Informationen: Methode nicht gefunden: "Void YamlDotNet.Serialization.Serializer..ctor(YamlDotNet.Serialization.SerializationOptions, YamlDotNet.Serialization.INamingConvention, YamlDotNet.Serialization.YamlAttributeOverrides)".
另一个使用的框架已经在 3.8 版本中包含了 YamlDotNet,但我使用的是 3.9,所以有冲突,但编译器没有找到。仅在运行时出现异常。
清理编辑: 我设法让两个库都达到了相同的版本,但效果很好。然后我与 nuget 包的开发人员交谈,让他们使用 nuget 功能进行正确的依赖管理。