gpt4 book ai didi

c# - 制作 list 的最简单方法

转载 作者:行者123 更新时间:2023-11-30 23:01:09 24 4
gpt4 key购买 nike

经过一些搜索,似乎:

repeated type thislist = 1;

应该列出一个列表,但我收到了这个错误:

cannot convert from 'Google.Protobuf.Collections.RepeatedField' to 'System.Collections.Generic.List'

我做错了什么吗?

最佳答案

我假设您使用的是 Google 实现,在这种情况下,您得到的是列表的类型(IList<T>),而不是 List<T>。 .

如果您想要简单的惯用类型,protobuf-net 可能更适合您; you can see the difference here (点击“生成”,并在 (protogen) C#(protoc) C# 之间更改工具 - protogen (protobuf-net) 给出:

[global::ProtoBuf.ProtoMember(1)]
public global::System.Collections.Generic.List<type> thislist { get; }
= new global::System.Collections.Generic.List<type>();

where-as protoc (Google) 给出:

[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public pbc::RepeatedField<global::type> Thislist {
get { return thislist_; }

关于c# - 制作 list 的最简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51197897/

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