Hi,
i have collection of objects which contains another collection:
class A
{
public string First {set;get;}
public List<string> Names {set;get;}
}
A[ groups = new A[10]
i do something like this:
XRControl control= rep.FindControl("Answer", true);
control.DataBindings.Add("Text", groups , "First ");
how can get access to Names in current groups element to bind it to other controls?