Click here to Skip to main content
15,886,199 members
Articles / Programming Languages / C#

Exploring Factory Pattern

,
Rate me:
Please Sign up or sign in to vote.
4.84/5 (63 votes)
23 Jun 2009CPOL13 min read 139.6K   2.1K   147  
How to Remove Conditional Checks

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "1-BasicNoobImplementation", "BasicNoobImplementation\1-BasicNoobImplementation.csproj", "{5DFD25D2-1802-4202-8433-354016B094AF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "4-ReflectionSelfRegistration", "ReflectionSelfRegistration\4-ReflectionSelfRegistration.csproj", "{C396303F-4D3C-426A-AFC7-7D44E3BAC396}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F930E2E9-DDAB-4050-BC4D-B34776B9E07C}"
	ProjectSection(SolutionItems) = preProject
		FactoryPattern_General.txt = FactoryPattern_General.txt
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "3-SelfRegistration", "SelfRegistration\3-SelfRegistration.csproj", "{D9A0E6F6-443B-4213-AD03-5881CA17E66E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "2-ReflectionRegistration", "ReflectionRegistration\2-ReflectionRegistration.csproj", "{225282B2-7E10-4738-9658-CBD47A610C64}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{5DFD25D2-1802-4202-8433-354016B094AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{5DFD25D2-1802-4202-8433-354016B094AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{5DFD25D2-1802-4202-8433-354016B094AF}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{5DFD25D2-1802-4202-8433-354016B094AF}.Release|Any CPU.Build.0 = Release|Any CPU
		{C396303F-4D3C-426A-AFC7-7D44E3BAC396}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C396303F-4D3C-426A-AFC7-7D44E3BAC396}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C396303F-4D3C-426A-AFC7-7D44E3BAC396}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C396303F-4D3C-426A-AFC7-7D44E3BAC396}.Release|Any CPU.Build.0 = Release|Any CPU
		{D9A0E6F6-443B-4213-AD03-5881CA17E66E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{D9A0E6F6-443B-4213-AD03-5881CA17E66E}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{D9A0E6F6-443B-4213-AD03-5881CA17E66E}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{D9A0E6F6-443B-4213-AD03-5881CA17E66E}.Release|Any CPU.Build.0 = Release|Any CPU
		{225282B2-7E10-4738-9658-CBD47A610C64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{225282B2-7E10-4738-9658-CBD47A610C64}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{225282B2-7E10-4738-9658-CBD47A610C64}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{225282B2-7E10-4738-9658-CBD47A610C64}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

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
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions