gpt4 book ai didi

c# - 为什么编译 typeModel 时某些内置类型不起作用?

转载 作者:行者123 更新时间:2023-12-04 10:30:42 25 4
gpt4 key购买 nike

当我编译类型模型字典时停止工作。

    [Test]
public void TestCompileSerialization()
{
var data = new Dictionary<int, int>();
data[1] = 1;

var typeModel = TypeModel.Create();
var compiledTypeModel = typeModel.Compile();

using (var memory = new MemoryStream())
{
compiledTypeModel.Serialize(memory, data);
}
}

这个测试抛出
Type is not expected, and no contract can be inferred: System.Collections.Generic.KeyValuePair`2[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]

我是否需要添加我可能想要序列化到 TypeModel 的每个字典,或者还有其他一些方法?

顺便说一句,我不明白为什么要预编译序列化程序时必须公开所有内容?

最佳答案

是的,当你创建自己的类型模型时,你需要提前告诉它要包含什么——否则它不知道要支持什么。理想情况下,这包括您将序列化为根类型的所有类型,因此:如果您要序列化字典:告诉它 .在内部,protobuf-net v2 实际上并不是特殊情况的字典——它把它们看作一个类型( KeyValuePair<TKey, TValue> )的类似列表的序列,恰好看起来很像一种它可以猜测为“元组”的类型"; protobuf-net v3 确实了解更多关于字典的信息,但是......你最好提前告诉它。

BTW I don't get why do I have to make everything public when I want to precompile serializers?



有两种类型的预编译;也许你真的只是想要 CompileInPlace() (而不是 Compile() ),它保留了现有的 RuntimeTypeModel ,但在幕后使用 IL-emit 创建轻量级的 shim 方法来完成这项工作;使用这种方法时,可以绕过可访问性验证检查,允许我访问非公开的任何内容;但是,当您使用 Compile() 时,您正在真实程序集中创建真实类型(仅:在内存中),并且当您这样做时:您无法绕过可访问性检查(以及其他一些验证检查);这意味着我要遵守与您在 C# 编译器中一样的规则:如果它不是公开的,我就不能碰它。

关于c# - 为什么编译 typeModel 时某些内置类型不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60434170/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com