Click here to Skip to main content
15,896,726 members
Articles / Programming Languages / C#

Message queuing: A message notification system and a brief introduction

Rate me:
Please Sign up or sign in to vote.
2.20/5 (3 votes)
21 Aug 2007CPOL3 min read 24.1K   177   14  
A simple application which can be a used for furture expansion and also an introcudtion to MSMQ.
using System;

namespace MessageNotification
{
	/// <summary>
	/// Summary description for Person.
	/// </summary>
	/// 
	[Serializable]
	public class Person
	{
		public Person()
		{
			//
			// TODO: Add constructor logic here
			//
		}
		public string ID;
		public string p;
	}
}

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
Web Developer
Iran (Islamic Republic of) Iran (Islamic Republic of)
I Hate Programming But I Have To Come Up With It .

Comments and Discussions