Click here to Skip to main content
15,884,237 members
Articles / Programming Languages / C#

LINQ Performance Test: My First Visual Studio 2008 Project

Rate me:
Please Sign up or sign in to vote.
3.52/5 (8 votes)
21 Dec 2007CPOL6 min read 128.8K   182   28  
A sample Visual Studio 2008 project that compares the performance of LINQ to simpler loops

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LinqTest", "LinqTest.csproj", "{1CCD1640-C16C-437E-B4C8-2AD401FC8A03}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestProject1", "TestProject1\TestProject1.csproj", "{C0F0210F-3BA5-4F51-8DC8-8FC09D2374C5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A1842FFE-8D98-4A8D-837C-5AB4B114ACED}"
	ProjectSection(SolutionItems) = preProject
		LinqTest.vsmdi = LinqTest.vsmdi
		LinqTest1.vsmdi = LinqTest1.vsmdi
		LocalTestRun.testrunconfig = LocalTestRun.testrunconfig
	EndProjectSection
EndProject
Global
	GlobalSection(TestCaseManagementSettings) = postSolution
		CategoryFile = LinqTest1.vsmdi
	EndGlobalSection
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{1CCD1640-C16C-437E-B4C8-2AD401FC8A03}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{1CCD1640-C16C-437E-B4C8-2AD401FC8A03}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{1CCD1640-C16C-437E-B4C8-2AD401FC8A03}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{1CCD1640-C16C-437E-B4C8-2AD401FC8A03}.Release|Any CPU.Build.0 = Release|Any CPU
		{C0F0210F-3BA5-4F51-8DC8-8FC09D2374C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C0F0210F-3BA5-4F51-8DC8-8FC09D2374C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C0F0210F-3BA5-4F51-8DC8-8FC09D2374C5}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C0F0210F-3BA5-4F51-8DC8-8FC09D2374C5}.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
Product Manager
United States United States
Currently, I manage the West Coast Professional Services team for a large company. Part of my job includes implementing solutions and developing "glue" applications.

I love RAD (Rapid Application Development) - specify a problem, come up with the solution, code it - and change later. This is where coding comes closest to art. Just let it flow...

If you want more biographical items, look at my LinkedIn profile at http://www.linkedin.com/in/gvider and if you'd like to see my opinion on other tech-related subjects, read my blog at http://www.guyvider.com.

Comments and Discussions