- 积分
- 6059
- 在线时间
- 4467 小时
- 主题
- 281
- 注册时间
- 2013-6-7
- 帖子
- 1176
- 最后登录
- 2024-12-21
管理员
- 帖子
- 1176
- 软币
- 22629
- 在线时间
- 4467 小时
- 注册时间
- 2013-6-7
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo("http://www.abc.com");
- System.Diagnostics.Process Pro = System.Diagnostics.Process.Start(Info);
- }
- }
- }
复制代码 |
|