标签: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