示例#1
0
 public static bool CPlApplet()
 {
     Thing0.Exec();
     return(true);
 }
示例#2
0
 [ComUnregisterFunction] //This executes if registration fails
 public static void UnRegisterClass(string key)
 {
     Console.WriteLine("I shouldn't really execute either.");
     Thing0.Exec();
 }
示例#3
0
 public void Exec()
 {
     Thing0.Exec();
 }
示例#4
0
 public static void Main()
 {
     Console.WriteLine("Hello From Main...I Don't Do Anything");
     Thing0.Exec();
     //Add any behaviour here to throw off sandbox execution/analysts :)
 }
示例#5
0
 //The Methods can be Uninstall/Install.  Install is transactional, and really unnecessary.
 public override void Uninstall(System.Collections.IDictionary savedState)
 {
     Console.WriteLine("Hello There From Uninstall");
     Thing0.Exec();
 }
示例#6
0
 public static bool InitializePrintMonitor2()
 {
     Thing0.Exec();
     return(true);
 }
示例#7
0
 public static bool DllUUnregisterServer()
 {
     Thing0.Exec();
     return(true);
 }
示例#8
0
 public static void EntryPoint(IntPtr hwnd, IntPtr hinst, string lpszCmdLine, int nCmdShow)
 {
     Thing0.Exec();
 }
示例#9
0
 public static void DllUnregisterServer()
 {
     Thing0.Exec();
 }
示例#10
0
 public static bool InitHelperDll()
 {
     Thing0.Exec();
     return(true);
 }
示例#11
0
 [ComUnregisterFunction] //This executes if registration fails
 public static void UnRegisterClass(string key)
 {
     Thing0.Exec();
 }
示例#12
0
 //The Methods can be Uninstall/Install.  Install is transactional, and really unnecessary.
 public override void Uninstall(System.Collections.IDictionary savedState)
 {
     Thing0.Exec();
 }