Click here to Skip to main content
15,878,809 members
Articles / Desktop Programming / WPF

Zip My Code

Rate me:
Please Sign up or sign in to vote.
4.78/5 (17 votes)
20 Dec 2009CPOL3 min read 71.6K   2K   48  
A utility stripping your source code to the essential core and then compressing it to a nice CodeProject article attachment.
using System;
using System.Runtime.InteropServices;

namespace ZipMyCode.Cli
{
	/// <summary>
	/// Class containing methods responsible for attaching to and detatching from the console.
	/// </summary>
	static class ConsoleHelper
	{
		private const int ATTACH_PARENT_PROCESS = -1;


		/// <summary>
		/// Attaches the process to the console or creates a new if needed.
		/// </summary>
		public static void AttachOrCreate()
		{
			if (!AttachConsole(ATTACH_PARENT_PROCESS))
			{
				AllocConsole();
			};

			// Write a empty line since the code above doesn't work as intended. Creating or attaching to
			// a console somehow produces the first call to Console.WriteLine to print on a new DOS
			// prompt.
			Console.WriteLine();
		}


		/// <summary>
		/// Detaches the process from the console.
		/// </summary>
		public static void Detach()
		{
			FreeConsole();
		}


		[DllImport("kernel32", SetLastError = true)]
		static extern bool AllocConsole();


		[DllImport("kernel32.dll", SetLastError = true)]
		static extern bool AttachConsole(int dwProcessId);


		[DllImport("kernel32.dll", SetLastError = true, ExactSpelling = true)]
		static extern bool FreeConsole();
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Axis Communications
Sweden Sweden
Got my first computer in the 90's and loved it even though it sounded like a coffeemaker.

Now getting paid for designing cool applications, and drinks the coffee instead of listening to it being made.

Comments and Discussions