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