As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am making a game library in C# and I need a free audio library that enable me to do these things.
Play sounds simultaneously.
Play background MIDI music.
Play these formats.
WAV
AIFF
MIDI
AU
Allow me to redistribute the library with my engine ( I'll use only binaries )
Allow selling of games made using it.
Are there any c# libraries which allow me to do these things?
Thanks.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I work as a system developer, mainly programming information systems in C# for web, desktop and server environments. Now I'd like to have a go at game development in C# just for the sake of the challenge and expanding my horizons, but where do I start? I've had a look at XNA, but I heard that it's on the way out.
Where does one begin?
I know this says "Teens" but it may be worth a look: http://www.amazon.co.uk/Visual-Programming-Teens-Course-Technology/dp/1435458486/ref=sr_1_3?ie=UTF8&qid=1371394387&sr=8-3&keywords=c%23+game
I just saw this today funnily enough, I have no affiliate with the author (or Amazon)
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I was wondering what is the best way to go on this one. My intention is to better learn C# by making a game and an appropriate GUI.
My game would have been something like ZooTycoon (http://www.gamespot.com/zoo-tycoon/)
but much more simple.
As I really don't intend to learn a new language (like DirectX) only to write GUI for this application I would prefer something simpler but handy. Does that even exist?
I would recommend looking at SlimDX or SharpDX.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I've been looking for ways to develop metro style games for Windows 8 in C#. All I can find are tuts explaining how to build games in C++ or JS/HTML5.
I'd really like to continue with C# since I really like the language. What are the recommendations around this topic?
I'd look into SharpDX or MonoGame, both of which have support for Windows 8 Metro style apps.
I'm not sure what the state of XNA is these days.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
In our real life Java and C# both has a significant effect. Personally I love Java because of its complexity also I have experience in C# too. I want to know, from desktop application to robotics, web application to machine learning what are the fields which are possible in Java but not currently available in C# and vice versa. Thank you.
Given both languages are Turing complete, anything you can do in one language you can do in the other.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
what are the best tools for c# to do image processing? i am a beginner and want to learn the basics
Try getting started with this:
http://code.google.com/p/aforge/
(Source: Are there any OK image recognition libraries for .NET?)
Once you learn the basics, you can try writing your own.
Try Emgu CV, it is the wrapper of opencv in .net. And you can get more information about it from :
http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=opencv+c%23
Also check the Image Processing Lab sample in C#, which uses AForge.NET library.