Inside the class library, I would like to know if there is access to it during development mode, as opposed to normal runtime.
I tried using System.ComponentModel.LicenseManager.UsageMode, but it seemed to have a Runtime value even when I edited the form.
UPDATE:
To clarify, I want to know if I am in development mode not from within the component, but rather from a separate class that is called by other elements from the form or control. I have a Utility class, which is called indirectly from a control, and is there anything I need to know if I am in development mode or not.
source
share