Friday, March 16, 2012

looping thru an array until entries exist

Hi,

How can I loop through an array of bytes, until the array elements exist.

ThanksWhat do you mean "exist"?
You can look through an array of bytes using
foreach(byte b in byteArray) {
// ...
}
I mean until there are elements inside the array, so that loop does'nt go on forever

0 comments:

Post a Comment