A namespace is a logical unit of organization. There are namespaces that are built in to the .NET Framework, and ones you can make yourself. The .NET Framework classes are organized in namespaces. For example, the common method of writing to the console window is with Console.WriteLine("");. Console.WriteLine("Message"); Using Console.WriteLine(""); requires a using directive at ...continue reading "C# Namespaces"
Category: Language
Content that is specific to one or more languages.
C# Hello World
A simple application in C#. Hello World is a traditional first application for a programmer learning a new language. It is a simple program that prints out a message to a display device and is a good way to learn the basic syntax of a language. A simple Hello World example: using System; namespace HelloWorld ...continue reading "C# Hello World"
UML Introduction
A simple introduction to UML (Unified Modeling Language) Unified Modeling Language UML is an industry standard way of modeling objects. It can be used to better understand objects and object-oriented programming, and to make it easier to conceptualize programming objects - the UML diagrams act like a template that can be used to write code from. ...continue reading "UML Introduction"
PHP Madlib
A simple madlib example. This PHP Madlib example uses a mix of PHP and markup, with a bit of CSS for presentation. PHP Madlib Form There are two pages; one page has a form where a person can enter in words, and the other will display the results. When the submit button (Create story) is ...continue reading "PHP Madlib"