YamlDotNet Serializer构造函数抛出异常

时间:2016-08-18 14:01:49

标签: c# yamldotnet

我必须遵循YamlDotNet docu https://dotnetfiddle.net/QlqGDV

中的代码
throw ex;

但新的Serializer引发了异常,我不知道为什么。我没有找到任何关于该异常消息的提示。

try{
    // some code
} catch (Exception ex) {
    // some catcher code
    // throw; ?
    // or
    // throw ex; ?
    // how to decide which one?
}

1 个答案:

答案 0 :(得分:0)

另一个使用过的框架已经在版本3.8中使用了YamlDotNet,但我使用了3.9,因此存在冲突,但编译器找不到。只有在运行时才有例外。