ROWLEX支持IEnumerable吗?因为当我将RdfProperty(true)与string[]一起使用时,它可以正常工作,但当我编写IEnumerable< string >类型的属性并返回字符串that is casting implicitly to IEnumerable时,它就不工作了。
如果支持泛型枚举,而不仅仅是支持Array类,那就更好了。
示例:
[RdfProperty(true)]
public IEnumerable< string > TestList
{
get
{
return new string[] { "First", "Second" };
}
}发布于 2009-07-14 18:33:44
不是的。编写ROWLEX是为了支持.NET1.1。然而,ROWLEX是开源的,欢迎贡献。
EDIT: ROWLEX2.1发布了,它确实发布了。
https://stackoverflow.com/questions/1126861
复制相似问题