Louis Young wrote: > If I've got an array of bytes, what is the byte order, i.e. > > is 0000 0000 0110 1011 > > represented as (0, 107) or (107, 0)?
The byte order of an array of bytes is exactly what it says it is. Element 0 comes before element 1 comes before element 2, etc. It's only when your element size is larger than one byte that the byte order matters. -- Rob ----------------------------------------------------- Home page: http://groups.yahoo.com/group/delphi-en/ To unsubscribe: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/delphi-en/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

