Remember: ArrayList of structs has value semantics.
Remember structs have value semantics, therefore an ArrayList of structs won’t support += operators, the indexer returns copies, and changes need to be assigned back to the ArrayList.
« Namespaces & WebServices | Main | DataGrid bound to ArrayList and System.Array, CurrencyManager handles consistency not formatting »
Remember structs have value semantics, therefore an ArrayList of structs won’t support += operators, the indexer returns copies, and changes need to be assigned back to the ArrayList.