摘要: <在不知道应用程序路径的情况下,通过应用程序的名字,即可打开:public class Test{static void Main(string[] args){Process proc = new Process(); proc.StartInfo.FileName = "Dreamweaver.exe"; proc.Start();Console.ReadLine();}}当然,前提是,...阅读全文
03 2004 档案
摘要: 刚在MSDN看了篇文章Determining the Span Between Two DatesExampleDateTime oldDate = new DateTime(2002,7,15);DateTime newDate = DateTime.Now;// Difference in days, hours, and minutes.TimeSpan ts = newDate - old...阅读全文
摘要: 哪个大哥能给讲讲object类型~~还有什么情况下相等这个是MSDN上的例子:The exampleusing System;class Test{ static void Main() { string s = "Test"; string t = string.Copy(s); Console.WriteLine(s == t); Console.WriteLine((object)s == ...阅读全文
摘要: 是真的吗?+++++++++++++++++++++++++++++++++++++++++++++++回复: 写了个很小的MSN机器人服务器端程序 问一下,你是直接用Socket通讯做的吗?据悉四月中旬,MSN Messenger 6.2将推出了,而且第三方程序均不能再调用MSNP了,所以我就不再开发了:) 3/5/2004 10:05 PM by 开心就好--+++++++++++++++++...阅读全文

