Click here to Skip to main content
15,884,099 members
Articles / Desktop Programming / Windows Forms

Anagrams - A Word Game in C#

Rate me:
Please Sign up or sign in to vote.
4.71/5 (27 votes)
4 Nov 2012CPOL6 min read 146.8K   3.9K   71  
The classic word game using words and letter scores allowed in Scrabble

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Anagrams", "Anagrams.csproj", "{7FD56315-1C8F-46DA-A0D7-14E4E258B729}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SmoothProgressBar", "..\SmoothProgressBar\SmoothProgressBar.csproj", "{E9F9E8BA-5088-46D1-80F5-3C3901DE3E74}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{7FD56315-1C8F-46DA-A0D7-14E4E258B729}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{7FD56315-1C8F-46DA-A0D7-14E4E258B729}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{7FD56315-1C8F-46DA-A0D7-14E4E258B729}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{7FD56315-1C8F-46DA-A0D7-14E4E258B729}.Release|Any CPU.Build.0 = Release|Any CPU
		{E9F9E8BA-5088-46D1-80F5-3C3901DE3E74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{E9F9E8BA-5088-46D1-80F5-3C3901DE3E74}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{E9F9E8BA-5088-46D1-80F5-3C3901DE3E74}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{E9F9E8BA-5088-46D1-80F5-3C3901DE3E74}.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
Software Developer (Senior) Paddedwall Software
United States United States
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.

My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Comments and Discussions