DMC's Blog Now Features a Nifty Code Syntax Highlighter
Check out the nifty new code syntax highlighter we've added to the blog. This will make it much easier for us to post code snippets. Here's a sample c# function that is automatically formatted. Also note the handy tools on the upper right corner of the code box. Just hover your mouse over the upper right corner and you can view, copy, or print the code.
using System;
namespace MyNameSpace
{
class HelloWorld
{
static void Main(string[] args)
{
Console.WriteLine ("Hello World");
}
}
}
Special thanks to Alex Gorbatchev for creating such a handy open source code highlighter module.
Comments
There are currently no comments, be the first to post one.