How to use csharp to open windows explorer in “select/open file mode

Code Example - How to use csharp to open windows explorer in “select/open file mode

                
                        System.Diagnostics.Process p = new System.Diagnostics.Process();
 p.StartInfo = new System.Diagnostics.ProcessStartInfo("explorer.exe");
 p.StartInfo.Arguments = "\select";
 p.Start();