gpt4 book ai didi

nanoframework - ESP32 上的 .NET nanoFramework 是否支持泛型

转载 作者:行者123 更新时间:2023-12-05 04:50:15 25 4
gpt4 key购买 nike

我正在尝试使用通用类编写一个针对 ESP32 的 C# 应用程序。启动调试器时,Visual Studio nanoFramework 扩展的调试过程似乎在“加载部署程序集”步骤陷入无限循环。

这是我在 VS2019 调试窗口中看到的输出:

Waiting for nanoDevice to initialize...
Debugger found. Resuming boot sequence.
Create Type System.
Loading Deployment Assemblies.
Assembly: Esp32NanoframeworkScratch (1.0.0.0) (212 RAM - 488 ROM - 226 METADATA)

AssemblyRef = 4 bytes ( 1 elements)
TypeRef = 8 bytes ( 2 elements)
FieldRef = 4 bytes ( 1 elements)
MethodRef = 16 bytes ( 4 elements)
TypeDef = 16 bytes ( 2 elements)
FieldDef = 4 bytes ( 1 elements)
MethodDef = 12 bytes ( 5 elements)
StaticFields = 0 bytes ( 0 elements)

Attributes = 0 bytes ( 0 elements)
TypeSpec = 0 bytes ( 0 elements)
Resources = 0 bytes ( 0 elements)
Resources Files = 0 bytes ( 0 elements)
Resources Data = 0 bytes
Strings = 96 bytes
Signatures = 22 bytes
ByteCode = 40 bytes


Assembly: mscorlib (1.10.3.0) (3948 RAM - 31220 ROM - 18795 METADATA)

AssemblyRef = 0 bytes ( 0 elements)
TypeRef = 0 bytes ( 0 elements)
FieldRef = 0 bytes ( 0 elements)
MethodRef = 0 bytes ( 0 elements)
TypeDef = 1112 bytes ( 139 elements)
FieldDef = 200 bytes ( 99 elements)
MethodDef = 1568 bytes ( 783 elements)
StaticFields = 144 bytes ( 12 elements)

Attributes = 40 bytes ( 5 elements)
TypeSpec = 4 bytes ( 1 elements)
Resources = 0 bytes ( 0 elements)
Resources Files = 0 bytes ( 0 elements)
Resources Data = 0 bytes
Strings = 2609 bytes
Signatures = 2095 bytes
ByteCode = 9686 bytes


Resolving.
Assembly: mscorlib (1.10.3.0) (3948 RAM - 31220 ROM - 18795 METADATA)
…(repeats the mscorlib assembly table forever)

默认的 NFProject 模板可以在我的硬件上毫无问题地构建、启动和调试。但是,添加泛型类会导致如上所示的无限循环:

using System.Threading;

namespace Esp32NanoframeworkScratch
{
public class Program
{
public static void Main()
{
_ = new GenericBox<object> { Value = new object() };
Thread.Sleep(Timeout.Infinite);
}
class GenericBox<T>
{
public T Value { get; set; }
}
}
}

这个repro不受泛型类是否inner的影响,也不受使用的具体类型参数的影响。如果我实例化并调用 Func<T>,问题也会重现.


我注意到 in 2018 (请参阅文章下方的最后评论)nanoFramework 项目的一名成员报告说支持泛型。但是,我找不到任何关于泛型支持/不支持的文档。四处搜索我找到了this merged pull request这似乎增加了对泛型的支持,并且 this blog post描述了对 System.Collections.Generic 的支持和 Linq 是“不一致的”。

纳米框架目前是否支持泛型?如果没有,该项目是否打算在未来支持泛型?

最佳答案

泛型支持正在开发中。目前唯一缺少的部分是在 VS 调试器库中添加对它的支持。我们计划尽快解决这个问题。

关于nanoframework - ESP32 上的 .NET nanoFramework 是否支持泛型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67353146/

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