
- 积分
- 6992
- 在线时间
- 4784 小时
- 主题
- 301
- 注册时间
- 2013-6-7
- 回帖
- 904
- 最后登录
- 2026-3-1

管理员
- 回帖
- 904
- 软币
- 25285
- 在线时间
- 4784 小时
- 注册时间
- 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);
- }
- }
- }
复制代码 |
|