📌  相关文章
📜  如何使用C#在“选择打开文件模式-C#代码示例”下打开Windows资源管理器

📅  最后修改于: 2022-03-11 14:49:05.151000             🧑  作者: Mango

代码示例1
System.Diagnostics.Process p = new System.Diagnostics.Process();
 p.StartInfo = new System.Diagnostics.ProcessStartInfo("explorer.exe");
 p.StartInfo.Arguments = "\select";
 p.Start();