Diogo

Diogo

  • NA
  • 5
  • 0

How to add arraylist items to a unique stream

Apr 24 2008 10:52 AM
Hi folks!

Well, take a look:
int nfiles = arrArchives.Count;
Stream st = null;
for (int i = 0; i <= nfiles; i++)
{
    st = arrArchives[i];
}


So, I want add arraylist items into "st" stream, how to do this?
This below code donĀ“t works, the error: "Cannot convert source type 'object' to target type 'System.IO.Stream'"

Thanks in advanced :)

Answers (2)