How can I know how all members of the structure are located inside? I need detailed listing with all the offsets and sizes Is there's any plugin for IDE, I use Visual Studio 2013? I can't use offset of or something similar because I need information about all the fields
struct Test {
int a; //0x0000 (4)
float b; //0x0004 (4)
bool c; //0x0008 (1)
}; //Size=0x000C
Thank you