页首Html代码

C# 如何实现自己的FormEditor XML Protocol

https://www.codeproject.com/articles/13272/crafting-a-c-forms-editor-from-scratch

 

C#主线程延时但是不卡

 

        public static bool Delay(int delayTime)
        {
            DateTime now = DateTime.Now;
            int s;
            do
            {
                TimeSpan spand = DateTime.Now - now;
                s = spand.Seconds;
                Application.DoEvents();
            }
            while (s < delayTime);
            return true;
        }

 

 

https://blog.stephencleary.com/2009/07/xml-over-tcpip.html

 

posted @ 2020-05-07 13:21  noigel  阅读(218)  评论(0编辑  收藏  举报
js脚本