Click here to Skip to main content
15,897,371 members

Response to: How to save data from video file into array

Revision 1
You need to make the storage type into an array. I would recommend making your own video type unless you are working with a package that provides one.

So if your object is stored as a byte array it would be:

C#
video[] Video = new video[255]; 


This would give 256 videos. I would also recommend using lists not arrays but this is what you wanted.
Posted 29-Dec-12 20:37pm by A-s-h-l-e-y.
Tags: , , ,