Dictionaries.Yawl 1.0.0

dotnet add package Dictionaries.Yawl --version 1.0.0
NuGet\Install-Package Dictionaries.Yawl -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dictionaries.Yawl" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dictionaries.Yawl --version 1.0.0
#r "nuget: Dictionaries.Yawl, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Dictionaries.Yawl as a Cake Addin
#addin nuget:?package=Dictionaries.Yawl&version=1.0.0

// Install Dictionaries.Yawl as a Cake Tool
#tool nuget:?package=Dictionaries.Yawl&version=1.0.0

Overview

The brute force dictionaries are C# implementations of constant word lists, designed for brute force applications. The overall purpose these projects were designed for is to assist with the creation or solution of word puzzles. All dictionaries contain a class named WordLists which subsequently contain a collection of properties that each represent the length of a word. For example:

namespace Dictionaries.Yawl {
    public static class WordLists {
        public static IEnumerable<string> TwoLetterWords { get; }
        public static IEnumerable<string> ThreeLetterWords { get; }
        public static IEnumerable<string> FourLetterWords { get; }
        // ... and so on.
    }
}

It is highly recommended that you alias the word list you're utilizing for clarity in your application:

using System.Linq;
using Yawl = Dictionaries.Yawl.WordLists;

// Select words containing the letter A.
IEnumerable<string> wordsContainingA = from word
                                       in Yawl.AllWords
                                       where word.Contains("A", System.StringComparison.InvariantCultureIgnoreCase)
                                       select word;

Yet Another Word List

The Dictionaries.Yawl project is an implementation of Mendel Cooper's "Yet Another Word List". It was created specifically for the creation and/or solution of word puzzles on Puzzling Stack Exchange. The words available will never change (e.g. no new words will be added, and no words will be removed).

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 234 9/13/2022

Initial release.