Click here to Skip to main content
15,885,278 members
Articles / Programming Languages / C#

Genuilder

Rate me:
Please Sign up or sign in to vote.
5.00/5 (30 votes)
10 Nov 2009Ms-PL9 min read 70.1K   432   66  
Enhance Visual Studio and your build process in just two clicks. This tool does its best to be out of your way, while improving your development experience seemlessly.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using Genuilder;

namespace PropertiesExtractor.TestProject
{
	class Program : INotifyPropertyChanged
	{
		static void Main(string[] args)
		{

		}


		public int Sample
		{
			get;
			set;
		}

		#region INotifyPropertyChanged Members

		public event PropertyChangedEventHandler PropertyChanged;

		#endregion
	}


	[ExtractProperties]
	public class Pet : INotifyPropertyChanged
	{
		public Pet()
		{
			var t = PetProperties.Age;
		}

		public int Age
		{
			get;
			set;
		}

		public int MyProperty3
		{
			get;
			set;
		}
		public int MyProperty2
		{
			get;
			set;
		}
		public int MyProperty
		{
			get;
			set;
		}
		public String Name
		{
			get;
			set;
		}

		public String Owner
		{
			get;
			set;
		}

		private DateTime _BirthDate;
		public DateTime BirthDate
		{
			get
			{
				return _BirthDate;
			}
			set
			{
				if(value != _BirthDate)
				{
					_BirthDate = value;
					if(PropertyChanged != null)
						PropertyChanged(this, new PropertyChangedEventArgs(PetProperties.BirthDate));
				}
			}
		}


		#region INotifyPropertyChanged Members

		public event PropertyChangedEventHandler PropertyChanged;

		#endregion
	}
}

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 Microsoft Public License (Ms-PL)


Written By
Software Developer Freelance
France France
I am currently the CTO of Metaco, we are leveraging the Bitcoin Blockchain for delivering financial services.

I also developed a tool to make IaaS on Azure more easy to use IaaS Management Studio.

If you want to contact me, go this way Smile | :)

Comments and Discussions