Tracy,

If you need help with this, shout (I wrote it).

> public class GACReader
> {
>         private static void Main()
>         {
>                 System.Diagnostics.Process GACRead;
> 
>                 GACRead = new System.Diagnostics.Process();
>                 GACRead.StartInfo.FileName = "gacutil";
>                 GACRead.StartInfo.Arguments = " -l | grep Version=1";
>                 GACRead.StartInfo.UseShellExecute = true;
>                 GACRead.StartInfo.RedirectStandardOutput = false;
>                 GACRead.Start();
> 
>                 contents = GACRead.StandardOutput.ReadToEnd();
> 
>                 GACRead.WaitForExit();
>                 GACRead.Close();
>         }
>         
> }


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

_______________________________________________
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to