1

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" };
   }
}
The_Ghost
  • 2,070
  • 15
  • 26

1 Answers1

2

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.

ROWLEX Admin
  • 1,200
  • 1
  • 8
  • 10