I was not trying to optimize Ram .. Just wondering why you could:
but cannot:
What is the difference?
Patch in this code and try it:
Code: (Select All)
Dim b As _bit * 32
b = &b1111
Print b
Code: (Select All)
Type S
b As _bit * 32
End Type
Patch in this code and try it:
Code: (Select All)
Type s
b As _Bit * 32
End Type
Dim z As s
Print z.b