B4J Question IntsFromBytes

Eme Fibonacci

Well-Known Member
Licensed User
Longtime User
Dim b () As Byte = eeprom.ReadBytes (0, 2)
If bc.IntsFromBytes (b) (0) = SpecialMark Then ...

What does (0) mean?

Thank you.
 

DonManfred

Expert
Licensed User
Longtime User
bc.IntsFromBytes returns a intarray based on the bytes. (0) is the first int in this array. This int is compared with specialmark.
 
Upvote 0
Top