コード例 #1
0
ファイル: R2Pipe.cs プロジェクト: msfwaifu/radare2gui_dotnet
        public static void Quit(this R2Pipe pipe)
        {
            if (pipe.doAsync)
            {
                pipe.RunCommandAsync("q!").GetAwaiter().OnCompleted(() =>
                {
                    pipe.Dispose();
                    return;
                });
            }

            pipe.Dispose();
        }
コード例 #2
0
ファイル: R2Pipe.cs プロジェクト: msfwaifu/radare2gui_dotnet
 public static void QuitSync(this R2Pipe pipe)
 {
     pipe.Dispose();
 }