Writing the String to the Output Window in Visual Studio 2013

Below is a sample code snippet that demonstrates how to write a string to the Output Windows in Visual Studio 2013.

Writing the String to the Output Window in Visual Studio 2013

using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
namespace AbundantCode
{
    internal class Program
    {     
        private static void Main(string[] args)
        {
            System.Diagnostics.Debug.WriteLine("This is a test message from Abundantcode.com");
            Console.ReadLine();
        }
    }
}
Writing the String to the Output Window in Visual Studio 2013
%d