Why System.Boolean takes 4 bytes even if it just stores one state TRUE or FALSE; which may be stored less than 4 bytes?
|
A But even 8 bits to represent a |
||||
|
The first result on a Google search for System.Boolean size told me that it's to do with memory alignment. It's faster to push around a four-byte Int32 than it is to work with individual bytes/bits. |
|||||||
|
|
Because it's fast. A 32-bit processor typically works with 32-bit values. Working with smaller values involves longer instructions, or extra logic. |
|||
|
|
|
I think it's only for performance, 32 bit values are much more efficient to manipulate. |
|||
|
|
|
Where'd you get that? System.Boolean takes only 1 byte. Just try:
|
|||||||
|
|
sorry it prints 4 byte:) bool b=false; Console.WriteLine(System.Runtime.InteropServices.Marshal.SizeOf(b).ToString()); also I don`t understand that... // char type prints 2 byte
// prints 1 byte
|
|||
|
|