Skip to content

Instantly share code, notes, and snippets.

View DannySotzny's full-sized avatar

Danny Sotzny DannySotzny

View GitHub Profile
@exelix11
exelix11 / screenshot.csx
Created August 16, 2018 11:25
C# android screenshot in memory with ADB
//Rquired to run in C# Interactive (csi screenshot.csx)
#r "C:\Windows\Microsoft.NET\Framework\v4.0.30319\System.Windows.Forms.dll" //depends on your pc
using System.Windows.Forms;
using System.IO;
static void screenshot()
{
var process = new System.Diagnostics.Process();
var start = new System.Diagnostics.ProcessStartInfo()