Hi gurus!!

I need to read a bin file, I have the specifications of the head of the file:

Byte 0 int
Byte 4 int
Byte 12 double
.....
Byte 99 double

I want to read the complite head (100 bytes) and pass this memory block to a class constructor who interpretate the values and inicializate the class which the apropiate values.

How can I do this.