Click here to Skip to main content
15,891,184 members
Articles / Programming Languages / C#

Dealing with Progressive Operations

Rate me:
Please Sign up or sign in to vote.
4.92/5 (26 votes)
10 May 2010CPOL30 min read 38.3K   318   60  
Through a clean OOP solution to deal with progressive operations, I will implicitly show you how OOP principles can work together to make a full, clean solution.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Erik.Utilities", "Erik.Utilities\Erik.Utilities.csproj", "{6E65C311-7003-41F7-8DAE-F4BC6AFCD6A4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OneThreadSamples", "OneThreadSamples\OneThreadSamples.csproj", "{7B40C62C-7CF0-4783-9FE3-7E1F1D4FCF73}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultipleThreadsSample", "MultipleThreadsSample\MultipleThreadsSample.csproj", "{05B94ACE-F327-4CC5-87EE-DDF6E009C96C}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{6E65C311-7003-41F7-8DAE-F4BC6AFCD6A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{6E65C311-7003-41F7-8DAE-F4BC6AFCD6A4}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{6E65C311-7003-41F7-8DAE-F4BC6AFCD6A4}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{6E65C311-7003-41F7-8DAE-F4BC6AFCD6A4}.Release|Any CPU.Build.0 = Release|Any CPU
		{7B40C62C-7CF0-4783-9FE3-7E1F1D4FCF73}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{7B40C62C-7CF0-4783-9FE3-7E1F1D4FCF73}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{7B40C62C-7CF0-4783-9FE3-7E1F1D4FCF73}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{7B40C62C-7CF0-4783-9FE3-7E1F1D4FCF73}.Release|Any CPU.Build.0 = Release|Any CPU
		{05B94ACE-F327-4CC5-87EE-DDF6E009C96C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{05B94ACE-F327-4CC5-87EE-DDF6E009C96C}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{05B94ACE-F327-4CC5-87EE-DDF6E009C96C}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{05B94ACE-F327-4CC5-87EE-DDF6E009C96C}.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
Technical Lead
Spain Spain
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions