Process[] p = Process.GetProcesses();
            foreach (Process pp in p)

文章標籤

Roy Lai 發表在 痞客邦 留言(0) 人氣()

System.Diagnostics.Process.Start("http://www.shineingshare.com/");

----------------------------------------------------------------------------------------------------------------

文章標籤

Roy Lai 發表在 痞客邦 留言(0) 人氣()

System.Diagnostics.Process.Start("notepad.exe");

----------------------------------------------------------------------------------------------------------------

文章標籤

Roy Lai 發表在 痞客邦 留言(0) 人氣()

button1.BackColor = Color.Transparent;

 

文章標籤

Roy Lai 發表在 痞客邦 留言(0) 人氣()

Form2 f2 = new Form2();
f2.Show();

文章標籤

Roy Lai 發表在 痞客邦 留言(0) 人氣()

public static string GetRandomString4(int length)
{
文章標籤

Roy Lai 發表在 痞客邦 留言(0) 人氣()

using (StreamWriter sw = File.AppendText(@TEST.TXT)) 
{
sw.WriteLine("XXX");
}

----------------------------------------------------------------------------------------------------------------

文章標籤

Roy Lai 發表在 痞客邦 留言(0) 人氣()

using (StreamReader sr = File.OpenText(@TEST.TXT)) 
{
string s = "";
while ((s = sr.ReadLine()) != null) 
{
Console.WriteLine(s);
}
}

 

文章標籤

Roy Lai 發表在 痞客邦 留言(0) 人氣()

System.Management.ObjectQuery MyQuery=new ObjectQuery("SELECT * FROM Win32_OperatingSystem");
System.Management.ManagementScope MyScope=new ManagementScope();
文章標籤

Roy Lai 發表在 痞客邦 留言(0) 人氣()

using System.Diagnostics;
 
文章標籤

Roy Lai 發表在 痞客邦 留言(0) 人氣()

1 23