Is there an easy way to bind a list<string[]> where each row/list element is a string array.and have each string array element's string bind to a column. E.g. the string array has 3 elements and I would end up with 3 columns. Just not sure of the binding syntax. It would be nice to do this without creating an indexer on my dataobject.
Hello,
I believe you are looking for using unbound fields. Only they can bind to an indexed property or collection by setting their binding path, like Property1[2].Name .
Works great thanks. Although I was unable to bind to a List<string[]> directly. I tried BindingPath=".[0]" but that errors. So I had to actually name the property. I suppose this is because it is field on the collection and not a public property (therefore not bindable).