Click here to Skip to main content
15,885,875 members

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

Revision 3
You need to make the storage type video as:
C#
{
string name;
string location;
}
and so on...

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: , , ,