Reputation: 73
I am trying to launch a URL in the default web browser and then close it after "x" time.
To open it I am using Process.Start(url) but can't figure out how to close it.
Suggestions?
Upvotes: 0
Views: 1335
Reputation: 7689
I think you've got the Process.Kill()
method which cater for this.
Upvotes: 1