Click here to Skip to main content
15,880,503 members
Articles / General Programming / Threads

Declarative multithreading

Rate me:
Please Sign up or sign in to vote.
4.94/5 (39 votes)
13 Mar 2012CDDL19 min read 57.5K   864   139  
An introduction and proof of concept code for the idea of declarative multi threading in C#.

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThreadBound", "ThreadBound\ThreadBound.csproj", "{61E48585-3A35-4AE7-ADCF-03C945B663D7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FormsTest", "FormsTest\FormsTest.csproj", "{CB95543A-8D04-4782-BBAB-329400AD116D}"
EndProject
Global
	GlobalSection(TestCaseManagementSettings) = postSolution
		CategoryFile = ThreadBound.vsmdi
	EndGlobalSection
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{61E48585-3A35-4AE7-ADCF-03C945B663D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{61E48585-3A35-4AE7-ADCF-03C945B663D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{61E48585-3A35-4AE7-ADCF-03C945B663D7}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{61E48585-3A35-4AE7-ADCF-03C945B663D7}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{61E48585-3A35-4AE7-ADCF-03C945B663D7}.Debug|x86.ActiveCfg = Debug|Any CPU
		{61E48585-3A35-4AE7-ADCF-03C945B663D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{61E48585-3A35-4AE7-ADCF-03C945B663D7}.Release|Any CPU.Build.0 = Release|Any CPU
		{61E48585-3A35-4AE7-ADCF-03C945B663D7}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{61E48585-3A35-4AE7-ADCF-03C945B663D7}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{61E48585-3A35-4AE7-ADCF-03C945B663D7}.Release|x86.ActiveCfg = Release|Any CPU
		{CB95543A-8D04-4782-BBAB-329400AD116D}.Debug|Any CPU.ActiveCfg = Debug|x86
		{CB95543A-8D04-4782-BBAB-329400AD116D}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
		{CB95543A-8D04-4782-BBAB-329400AD116D}.Debug|Mixed Platforms.Build.0 = Debug|x86
		{CB95543A-8D04-4782-BBAB-329400AD116D}.Debug|x86.ActiveCfg = Debug|x86
		{CB95543A-8D04-4782-BBAB-329400AD116D}.Debug|x86.Build.0 = Debug|x86
		{CB95543A-8D04-4782-BBAB-329400AD116D}.Release|Any CPU.ActiveCfg = Release|x86
		{CB95543A-8D04-4782-BBAB-329400AD116D}.Release|Mixed Platforms.ActiveCfg = Release|x86
		{CB95543A-8D04-4782-BBAB-329400AD116D}.Release|Mixed Platforms.Build.0 = Release|x86
		{CB95543A-8D04-4782-BBAB-329400AD116D}.Release|x86.ActiveCfg = Release|x86
		{CB95543A-8D04-4782-BBAB-329400AD116D}.Release|x86.Build.0 = Release|x86
	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 Common Development and Distribution License (CDDL)


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

Comments and Discussions