Esempio n. 1
0
 public FunctionCall savewindow(string arg_txt)
 {
     return(delegate()
     {
         Bitmap bmp = ScreenCapturer.CaptureForegroundWindow();
         bmp.Save(arg_txt);
         bmp.Dispose();
         return FunctionResult.Continue;
     });
 }