博客
关于我
c#启动本机程序
阅读量:679 次
发布时间:2019-03-16

本文共 481 字,大约阅读时间需要 1 分钟。

添加命名空间:

using System.Diagnostics;

namespace 控制台

{

   class Program

{

       static void Main(string[] args)

{

           Console.WriteLine("please input :1-千千静听,2-IE,3-计算器");

           int cmd = Console.Read();

if (cmd == 49)

               Process.Start("TTPlayer.exe");

else if (cmd == 50)

               Process.Start("IEXPLORE.EXE");

else if (cmd == 51)

               Process.Start("Calc.exe");

Console.ReadLine();

{

{

转载地址:http://isdqz.baihongyu.com/

你可能感兴趣的文章
Protobuf 编译工具转换 Java 类
查看>>
protobuf使用详解
查看>>
ProtoBuf在使用protoc进行编译时提示: Required fields are not allowed in proto3
查看>>
Protobuf学习 - 入门
查看>>
protobuf对象与JSON相互转换
查看>>
ProtoBuf的介绍以及在Java中使用protobuf将对象进行序列化与反序列化
查看>>
protocol学习笔记001---RPC和HTTP协议之间的区别_与各自优势
查看>>
protostuff简单应用
查看>>
PRover 开源项目教程
查看>>
PyTorch-Tutorials【pytorch官方教程中英文详解】- 4 Transforms
查看>>
Proxy server 緩存 jsp html
查看>>
Proxy 和 Reflect 结合实现代理和拦截( 代码示例 )
查看>>