码迷,mamicode.com
首页 > 其他好文 > 详细

DebuggerStepThrough requests that the debugger step through a function without any user interaction.

时间:2020-06-01 12:12:22      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:without   request   line   print   through   inter   fun   OLE   class   

 static void Main(string[] args)
        {
            DoWorkProxy();
            Console.ReadLine();
        }


        [DebuggerStepThrough,DebuggerHidden]
        static void DoWorkProxy()
        {
            PrintTime();
        }

        static void PrintTime()
        {
            Console.WriteLine($"Now is {DateTime.Now.ToString("yyyyMMddHHmmssffff")} ");
        }

DebuggerStepThrough requests that the debugger step through a function without any user interaction.

 

DebuggerStepThrough requests that the debugger step through a function without any user interaction.

标签:without   request   line   print   through   inter   fun   OLE   class   

原文地址:https://www.cnblogs.com/Fred1987/p/13024079.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!