OldNorwegianDictionary 0.9.8

dotnet add package OldNorwegianDictionary --version 0.9.8
NuGet\Install-Package OldNorwegianDictionary -Version 0.9.8
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="OldNorwegianDictionary" Version="0.9.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OldNorwegianDictionary --version 0.9.8
#r "nuget: OldNorwegianDictionary, 0.9.8"
#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 OldNorwegianDictionary as a Cake Addin
#addin nuget:?package=OldNorwegianDictionary&version=0.9.8

// Install OldNorwegianDictionary as a Cake Tool
#tool nuget:?package=OldNorwegianDictionary&version=0.9.8

Old Norwegian Dictionary

Old Norwegian/Norse Dictionary for C#. The dictionary consists of 40 000+ Old Norse words with Norwegian translations.

Based on "Dictionary of the Old Norwegian Language".

Install

dotnet add package OldNorwegianDictionary

Usage

using OldNorwegianDictionary;

// Get all dictionary entries.
var dictionary = new Dictionary();
var result = dictionary.GetEntries();
Console.WriteLine(result.Count); // 42 021 entries.

// Individual entry contains headword, definition and part of speech.
DictionaryEntry entry = result[42000];
Console.WriteLine(entry.Headword); // þyrnir
Console.WriteLine(entry.PartOfSpeech); // m
Console.WriteLine(entry.Definition); // þyrnir, m. Tjørn, Tornebusk. [...] etc.

// Entries contain couple of helper methods.
DictionaryEntry entry2 = result[0];

// Part of speech does not exist in all entries.
Console.WriteLine(entry2.HasPartOfSpeech()); // false

// ToString is overwritten for generic presentation.
Console.WriteLine(entry2.ToString()); // [HEADWORD] - [DEFINITION]

About "Dictionary of the Old Norwegian Language"

"Ordbog over det gamle norske Sprog" dictionary was published in late 1800s by Johan Fritzner. Its is the largest Old Norse to Norwegian dictionary, containing over 40 000 word definitions. While the original dictionary is called dictionary of "old norwegian", it is practically a dictionary of western Old Norse. Technically "Old Norwegian" would be a later stage in the language.

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
0.9.8 423 4/25/2022
0.9.7 388 4/24/2022
0.9.6 372 4/24/2022
0.9.5 381 4/24/2022