I want to write business logic with data in a dataset.
The data will be of the below format
AssociateId
Action
Time
1 Login 12/12/2012 20:33
2 Login 12/13/2012 20:33
1 Login 12/14/2012 20:33
2 Game page 12/15/2012 20:33
1 Home page 12/16/2012 20:33
1 Map 12/17/2012 20:33
I want to convert this to a dataset, i dont want to make database call and populate it from there.
I am assigning it to a string and converting it to an array by splitting using the space. How can convert that array or this string as a whole to a dataset or datatable??