Operators
6 Feb 2008 @ 07:44AM
Updated: 25 Jan 2010 @ 07:44AM
Operators are what allow us to compare or do other work within C#. We've already looked at a few. For instance we've looked at the relative operator ==. We've also looked at the additive operator (+) and a special additive operator (+=). Some other operators we've looked at already are the Boolean AND operator (&&) and the Boolean OR operator (||). Here we're going to go into a bit more detail on the various operators. This is not going to cover every operator out there, just some of the more common ones. If you're looking for a more inclusive list, try
CSharpHelp.com or
MSDNThere are other operators but these are the ones you'll be using the most of. I rarely use any operators not defined in the list above. Though you're certainly not expected to memorize everything in a programming language (that's what Google is for) memorizing the above table is probably one of the more handy things you can do. Then again, just by programming you'll probably memorize them anyway.
That does it for this tutorial. With the information presented in this and the previous tutorials you should now be able to write an actual web application. Further tutorials will cover making web applications more valuable by doing things like adding a database backend, doing file operations, and whatever else I feel like writing a tutorial about.