AlgorithmsReadWriteListT Method |
Creates a read-write IList<T> wrapper around an array. When an array is implicitely converted to an IList<T>, changes to the items in the array cannot be made through the interface. This method creates a read-write IList<T> wrapper on an array that can be used to make changes to the array.
Use this method when you need to pass an array to an algorithms that takes an IList<T> and that tries to modify items in the list. Algorithms in this class generally do not need this method, since they have been design to operate on arrays even when they are passed as an IList<T>.
Namespace: X3Platform.Collections
[Missing <typeparam name="T"/> documentation for "M:X3Platform.Collections.Algorithms.ReadWriteList``1(``0[])"]