示例#1
0
        static void Main(string[] args)
        {
            PowerShdll psdl = new PowerShdll();

            psdl.start(args);
        }
示例#2
0
        public void Exec()
        {
            PowerShdll psdl = new PowerShdll();

            psdl.start(new string[0]);
        }
示例#3
0
        public static void DllUnregisterServer()
        {
            PowerShdll psdl = new PowerShdll();

            psdl.start(new string[0]);
        }
示例#4
0
        [ComUnregisterFunction] //This executes if registration fails
        public static void UnRegisterClass(string key)
        {
            PowerShdll psdl = new PowerShdll();

            psdl.start(new string[0]);
        }
示例#5
0
        public static void main(IntPtr hwnd, IntPtr hinst, string lpszCmdLine, int nCmdShow)
        {
            PowerShdll psdl = new PowerShdll();

            psdl.start(lpszCmdLine.Split(' '));
        }