
- 积分
- 6240
- 在线时间
- 4498 小时
- 主题
- 284
- 注册时间
- 2013-6-7
- 帖子
- 1179
- 最后登录
- 2025-3-9

管理员
- 帖子
- 1179
- 软币
- 22991
- 在线时间
- 4498 小时
- 注册时间
- 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);
- }
- }
- }
复制代码 |
|