ValueTypeArrayList:
Removed type check. It wasn't really useful and just made the initialization confusing. It also didn't do any restricting of values to a particular ValueType. Removed the static constructor helpers as they were no longer useful.
Added new constructors for initial data.
Added two new implicit operators for data work. VTAL is now assignable to and from ValueType[]. For preinitializing a large array of data, it's much more efficient to populate a ValueType[] and then create a new VTAL using that data than it is to repeatedly call Add on a VTAL.
↧