我使用 Gtk#,我需要转换List<Byte[]>
为Byte[]
. 我在这里找到了此操作的示例,但它是 .NET Framework 的示例,当我尝试通过 Gtk# 执行此操作时,出现一些编译错误:
“类型
System.Collections.Generic.List<byte[]>' does not contain a definition for
SelectMany' 并且找不到扩展方法SelectMany' of type
System.Collections.Generic.List'(您是否缺少 using 指令或程序集引用?)(CS1061)”。
如何解决此错误或我可以使用其他 Gtk# 的转换方式?