Search found 1 match

by antoniosarco
Tue Oct 25, 2016 6:29 am
Forum: Support
Topic: [Fixed in 0.2.0] NullReferenceException in revertDeviceTaskToNone
Replies: 3
Views: 7468

Re: [Fixed in 0.2.0] NullReferenceException in revertDeviceTaskToNone

The message "Object not set to instance of Object" means that you are trying to use an object which has not been initialized. That is, you either set it to null, or you never set it to anything at all. The runtime throwing a NullReferenceException always means the same thing: you are tryin...