ROWLEX 本身支持 IEnumerable<> 吗?

发布于 2024-07-28 22:29:44 字数 371 浏览 2 评论 0 原文

ROWLEX 支持 IEnumerable 吗? 因为当我将 RdfProperty(true) 与 string[] 一起使用时,它工作正常,但是当我编写 IEnumerable< 字符串> 属性的类型并返回 string[] (即隐式转换为 IEnumerable),但它不起作用。

如果支持泛型枚举,而不仅仅是数组类,那就太好了。

例子:

[RdfProperty(true)]
public IEnumerable< string > TestList
{
   get
   {
      return new string[] { "First", "Second" };
   }
}

Is ROWLEX supports IEnumerable? Because when I use RdfProperty(true) with string[] it is working correctly, but when I write IEnumerable< string > type of property and return string[] (that is casting implicitly to IEnumerable) and it is not working.

It is good if generic enumerables are supported, not only Array class.

Example:

[RdfProperty(true)]
public IEnumerable< string > TestList
{
   get
   {
      return new string[] { "First", "Second" };
   }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我爱人 2024-08-04 22:29:44

不可以。ROWLEX 是为了支持 .NET1.1 而编写的。 不过,ROWLEX 是开源的,欢迎贡献。

编辑:ROWLEX 2.1 已发布,并且确实发布了。

No. ROWLEX was written to support .NET1.1. However, ROWLEX is open source, contributions are welcome.

EDIT: ROWLEX 2.1 is released and it does.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文