プロパティのリストがあります。同じページの複数の要素にこれらのPropertiesCollectionsを追加したいと思います。それは次のようなものです
[0] => List
([0] => ID
[1] => Name
[2] => Add
[3] => PhoneNo
[4] => City)
[1] => List
(And so on....
internal class PropertiesCollection : List<Properties>
{
}
internal class Properties
{
}
PropertiesCollection collection = new PropertiesCollection ();
どうすれば達成できますか
Something[0,collection[0]]
Something[0,collection[1]]
Something[1,collection[0]]
Something[1,collection[1]] ?