在C#中如何调用记事本

using System.Diagnostics;
Process.Start(path+"notepad.exe");

如果用xp,你可以
using System.Diagnostics;
Process.Start("c:\windows\system32\notepad.exe");

打开其它应用程序同理。
原文地址:https://www.cnblogs.com/nianshi/p/715048.html