Eme Fibonacci Well-Known Member Licensed User Longtime User Feb 10, 2020 #1 Dim b () As Byte = eeprom.ReadBytes (0, 2) If bc.IntsFromBytes (b) (0) = SpecialMark Then ... What does (0) mean? Thank you.
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 Feb 10, 2020 #2 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
bc.IntsFromBytes returns a intarray based on the bytes. (0) is the first int in this array. This int is compared with specialmark.