Gonzalo Paniagua Javier wrote:
two overridden versions are not implemented:El jue, 19-12-2002 a las 19:26, Jamin Philip Gray escribi�:I noticed that System.Diagnostics.Process.Start() has not yet been implemented. Is there another way to call an external program from within a C# program?Process.Start is implemented. -Gonzalo
Process.Start(string filename)
Process.Start(string filename, string arguments)
Process.Start(ProcessStartInfo info) works though
Is there any reason the unimplemented functions aren't simply:
public static Process.Start(string filename)
{
return Process.Start(new ProcessStartInfo(filename);
}
public static Process.Start(string filename, string arguments)
{
return Process.Start(new ProcessStartInfo(filename, arguments);
}
it certainly would reduce confusion that those variants are unimplmented yet others are
--
.o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.
| Matt Kunze Sometimes there's a point.|
| Build Master Fooly Fool This is not one of those |
| 970.484.0841 x 2205 times. |
=============================================================
_______________________________________________
Mono-list maillist - [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list
