Reputation: 122600
Under certain conditions, I would like to open a web browser of some sort directly from a C# XNA game. The browser would be pointing to a site I would specify. Is this possible?
Upvotes: 0
Views: 2537
Reputation: 947
Probably he means inside his apps and if that is the case, no there is no preconfigured way. You should create an HTML parser (or find one online) and link it to your renderer engine, draw the page, etc..et...etc.. Quite a long job, but not impossible. :P
And yes, I don't know which restriction are posed onto the XboX game, but I doubt it will give your app free unrestricted internet access.
Upvotes: 0
Reputation: 888185
You can call Process.Start(url)
.
Note that it won't work on the XBox. (Obviously)
Upvotes: 2