cscの作法 その77


概要

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);
		}
	}
}


以上。