cscの作法 その77
529 ワード
概要
cscの作法、調べてみた。
メモ帳、起動してみた。
サンプルコード
using System;
using System.Diagnostics;
namespace ProcessStartSample
{
class Program {
static void Main(string[] args) {
ProcessStartInfo app = new ProcessStartInfo();
app.FileName = "notepad";
app.Arguments = "pro6.cs";
Process.Start(app);
}
}
}
using System;
using System.Diagnostics;
namespace ProcessStartSample
{
class Program {
static void Main(string[] args) {
ProcessStartInfo app = new ProcessStartInfo();
app.FileName = "notepad";
app.Arguments = "pro6.cs";
Process.Start(app);
}
}
}
以上。
Author And Source
この問題について(cscの作法 その77), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/5d9a3a67a39cf3a107d8著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .