public enum SC_START_TYPE : int
{
SERVICE_BOOT_START = 0x00000000,
SERVICE_SYSTEM_START = 0x00000001,
SERVICE_AUTO_START = 0x00000002,
SERVICE_DEMAND_START = 0x00000003,
SERVICE_DISABLED = 0x00000004
}
Would be nice to be able to refactor this automatically so it matches C# standard naming scheme. Makes it easier to convert C++ legacy code to C#/.Net
1) remove underscores, uppercase first letter after underscore
2) lowercase the rest