Game Development Reference
In-Depth Information
Summary
Visual Studio Express is one of the best ways to develop C# programs; it's free
and has many features. It's a full IDE with support for writing, compiling, and
debugging C# programs. There are many helpful functions for refactoring
existing code and generating new code. It also has many shortcut keys to make
writing code faster. Source control is a way of recording all the changes to the
code and keeping the source in one place. SVN is a great source control program
with an easy to use Windows wrapper called TortoiseSVN.
Unit tests are small pieces of code that verify a small piece of your program is
working correctly. NUnit is a unit testing program for C# that provides interface
to write tests for your code. Once the tests are written, NUnit has a program that
will visually display and run all the tests, putting a green tick next to passing tests
and a red cross next to failing tests. These three programs are an excellent starting
point for C# development.
 
 
Search WWH ::




Custom Search