Is it possible to make a game manager like steam (without the downloads just something that lists your games) in C#?
I'm just not sure what the .NET framework can do.
|
Is it possible to make a game manager like steam (without the downloads just something that lists your games) in C#? I'm just not sure what the .NET framework can do. |
|||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Yes, of course it's possible. You can do just as much with C# as you can do with any other language (which is just about anything). Most programming languages you find will be Turing complete, which effectively means you can always do with one what you can do with another. The only real difference is the way you can approach those problems with the given language, and what libraries are available. Since C# and the .NET framework have a tremendous variety of libraries available, there are not many limits there. |
|||
|
|