Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Imports System
- Imports System.Diagnostics
- Class Program
- Public Shared Sub Main()
- Dim Info As New ProcessStartInfo
- Info.FileName = "dotnet"
- Info.Arguments = "--info"
- Info.RedirectStandardOutput = True
- With Process.Start(Info)
- Console.Writeline(.StandardOutput.ReadToEnd)
- End With
- End Sub
- End Class
Add Comment
Please, Sign In to add comment