For those wanting to use a Class.
Create a Class with all the parameters you want
Create a list with the class as parameter
class MyClass_x000D_
{_x000D_
public string S1;_x000D_
public string S2;_x000D_
}_x000D_
_x000D_
List<MyClass> MyList= new List<MyClass>();
_x000D_