Experience in C++, C#, Java and Process : Living in Montreal

* What is my technical experience as a software developer

* What I have learned in the software business

* Where I am heading to in my career

* How to process in a project

Wednesday, December 15, 2004

C# Practise: System.Diagnostics.Process.Start

The following two code blocks are same:
1.
System.Diagnostics.Process.Start("http://www.glinknet.com");
return;

2.
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "http://www.glinknet.com";
p.StartInfo.Verb = "Show";
p.StartInfo.CreateNoWindow = true;
p.Start();

2 Comments:

  • At 9:26 PM , Blogger YJ said...

    Hey, i love your blog althought i don't know what is "c++", "c#"...

    i will come again

     
  • At 12:32 PM , Anonymous Anonymous said...

    Come after you learned about C++ &/ C#! ;)

     

Post a Comment

Subscribe to Post Comments [Atom]

<< Home