J
jayderk
Hello All,
I am pretty sure the question has been asked before, but I couldn't find it.
I want to be able to deploy my app (with no code change) to emulator or my
CE4.1 device.
my 4.1 device has some hardware that is not on the emulator(and I don't need
it on the emulator).
I would like something like this
#if 'I am not using the emulator'
hardware_device.initialize();
#endif
private void useHardware()
{
this.doOtherStuff();
#if 'I am not using the emulator'
hardware_device.usethis();
#endif
}
thanks in advanced
Jay
I am pretty sure the question has been asked before, but I couldn't find it.
I want to be able to deploy my app (with no code change) to emulator or my
CE4.1 device.
my 4.1 device has some hardware that is not on the emulator(and I don't need
it on the emulator).
I would like something like this
#if 'I am not using the emulator'
hardware_device.initialize();
#endif
private void useHardware()
{
this.doOtherStuff();
#if 'I am not using the emulator'
hardware_device.usethis();
#endif
}
thanks in advanced
Jay