public void Simulate()
        {
            if (started)
            {
                return;
            }
            started = true;

            if (Debugger.IsAttached)
            {
                return;
            }


            var a = new VSDebugAttacher();

            a.AttachToVisualStudio();
        }
コード例 #2
0
        public void TestAttach()
        {
            var attacher = new VSDebugAttacher();

            attacher.AttachToVisualStudio();
        }