vote up 1 vote down star

Hello!

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" };
   }
}
flag

1 Answer

vote up 1 vote down check

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.