stscoundrel / old-swedish-dictionary-cs

Old Swedish Dictionary for C# / .NET. From K.F. Söderwall's Medieval Swedish Dictionary

Home Page:https://www.nuget.org/packages/OldSwedishDictionary

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Old Swedish Dictionary

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

Based on K.F. Söderwall's Medieval Swedish Dictionary

Install

dotnet add package OldSwedishDictionary

Usage

using OldSwedishDictionary;

// Get all dictionary entries.
var dictionary = new Dictionary();
var result = dictionary.GetEntries();
Console.WriteLine(dictionar.Count); // 41 744 entries.

// Individual entry contains headword, part of speech, grammatical aspect, definitions and possibly alternative forms.
DictionaryEntry entry = result[100];
Console.WriteLine(entry.Headword); // af bränna
Console.WriteLine(entry.PartOfSpeech); // vb
Console.WriteLine(entry.GrammaticalAspect); // v
Console.WriteLine(entry.Information); // empty string in this case, some entries contain additional information.
Console.WriteLine(entry.Definition); // afbränna, genom eld förstöra. hans trähws the af brendhe [...] etc.

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

About "Dictionary of Old Swedish"

"Ordbok Öfver svenska medeltids-språket" dictionary was published in late 1884—1918 by K.F. Söderwall. Additional supplement to it was published in 1953—1973.

Old Swedish developed from Old East Norse, the eastern dialect of Old Norse, at the end of the Viking Age. Early Old Swedish was spoken from about 1225 until about 1375, and Late Old Swedish was spoken from about 1375 until about 1526.

The original material is licenced under Creative Commons International (CC BY 4.0), made available by University of Gothenburg. The source code for this library is under MIT licence.

About

Old Swedish Dictionary for C# / .NET. From K.F. Söderwall's Medieval Swedish Dictionary

https://www.nuget.org/packages/OldSwedishDictionary

License:MIT License


Languages

Language:C# 100.0%