摘要:
C# WinForm程序退出的方法1.this.Close(); 只是关闭当前窗口,若不是主窗体的话,是无法退出程序的,另外若有托管线程(非主线程),也无法干净地退出;2.Application.Exit(); 强制所有消息中止,退出所有的窗体,但是若有托管线程(非主线程),也无法干净地退出;3.A... 阅读全文
摘要:
Process currentProcess = Process.GetCurrentProcess(); //获取当前进程 //获取当前运行程序完全限定名 string currentFileName = currentProcess.MainModule.FileName; //获取进程名为ProcessName的Process数组。 Process[] processes = Process.GetProcessesByName(currentProcess.ProcessName); ... 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Reflection; 4 5 namespace test 6 { 7 public class test 8 { 9 public static void RunSchedule()10 {11 test type = Activator.CreateInstance(typeof(test), true) as test;12 13 MethodInfo m... 阅读全文
摘要:
原文:http://blog.csdn.net/lanwilliam/article/details/2467222日期转化一为了达到不同的显示效果有时,我们需要对时间进行转化,默认格式为:2007-01-03 14:33:34 ,要转化为其他格式,要用到DateTime.ToString的方法(String, IFormatProvider),如下所示:using System;using System.Globalization;String format="D";DateTime date=DataTime,Now;Response.Write(date.ToStri 阅读全文
摘要:
在黑色主题基础上,更改了字体 Ms Comic Sans 字号也增大了附件中有两个 一个是原版主题下载自https://studiostyl.es/第二个是如下改完后的主题vssettings.zip 阅读全文
摘要:
几种基本的数字正则表达式[转] 只能输入1个数字 表达式 ^\d$ 描述 匹配一个数字 匹配的例子 0,1,2,3 不匹配的例子 只能输入n个数字 表达式 ^\d{n}$ 例如^\d{8}$ 描述 匹配8个数字 匹配的例子 12345678,22223334,12344321 不匹配的例子 只能输入至少n个数字 表达式 ^\d{n,}$ 例如^\d{8,}$ 描述 匹配最少n个数字 匹配的例子 12345678,123456789,12344321 不匹配的例子 只能输入m到n个数字 表达式 ^\d{m,n}$ 例如^\d{... 阅读全文
摘要:
原文:http://www.cnblogs.com/coconut_zhang/archive/2009/02/02/1382598.html1. 当前系统日期、时间 select getdate() 2. dateadd 在向指定日期加上一段时间的基础上,返回新的 datetime 值 例如:向日期加上2天 select dateadd(day,2,'2004-10-15') --返回:2004-10-17 00:00:00.0003. datediff 返回跨两个指定日期的日期和时间边界数。 select dated... 阅读全文
摘要:
A callback is a function that is passed as an argument to another function and is executed after its parent function has completed callback function click me 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Xml; 6 using System.Net; 7 8 namespace ... 阅读全文