Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
555
Ultragrid data into arraylist
posted

Hi

I would like to know how can we pass ultragrid data into arraylist.  Please provide an example.

Parents
No Data
Reply
  • 17259
    Verified Answer
    Offline posted

    ArrayList list = new ArrayList();

    foreach (UltraGridRow row in grid.Rows)

    list.Add(row.Listbject);

     

    Why do you use an ArrayList? List<T> should be used instead.

Children