If you accidentally omit the type in an Array(..) declaration like
Public const ActCode() As Byte = Array(0xc9, 0x44 )
If you compile in Debug mode it accepts it and causes odd runtime behaviour later on . If you compile in Release mode you get an incompatible type error during compilation.
Public const ActCode() As Byte = Array(0xc9, 0x44 )
If you compile in Debug mode it accepts it and causes odd runtime behaviour later on . If you compile in Release mode you get an incompatible type error during compilation.