├── .gitignore ├── 3rd_Party_Tools_Data ├── Double Metaphone │ └── Metaphone.NET │ │ ├── AssemblyInfo.cs │ │ ├── DoubleMetaphone.cs │ │ ├── Metaphone.NET.csproj │ │ ├── Metaphone.NET.csproj.user │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ShortDoubleMetaphone.cs ├── Fullable │ ├── a.lst │ ├── b.lst │ ├── c.lst │ ├── d.lst │ ├── e.lst │ ├── f.lst │ ├── g.lst │ ├── h.lst │ ├── i.lst │ ├── j.lst │ ├── k.lst │ ├── l.lst │ ├── m.lst │ ├── n.lst │ ├── o.lst │ ├── p.lst │ ├── q.lst │ ├── r.lst │ ├── s.lst │ ├── t.lst │ ├── u.lst │ ├── v.lst │ ├── w.lst │ ├── x.lst │ ├── y.lst │ └── z.lst ├── brill_tagger_dotnet_port │ ├── AssemblyInfo.cs │ ├── BrillTagger.cs │ ├── BrillTagger.csproj │ ├── BrillTagger.sln │ ├── Formatter.cs │ └── TestBrill │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── TestBrill.csproj │ │ └── TestBrill.sln └── vbLike │ ├── AssemblyInfo.vb │ ├── vbLike.sln │ ├── vbLike.vbproj │ └── vblike.vb ├── Contributed Extras └── Lexicon Class │ ├── Lexicon.cs │ └── readme.txt ├── Library └── cs │ ├── AssemblyInfo.cs │ ├── Class1.cs │ ├── Index.cs │ ├── Lexeme.cs │ ├── LexemeList.cs │ ├── Lexicon.cs │ ├── Properties │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── SemCor.cs │ ├── SynSet.cs │ ├── SynSetList.cs │ ├── Synonym.cs │ ├── WordNet.Net.csproj │ ├── WordNet.Net.sln │ ├── app.config │ ├── bitset.cs │ ├── license.txt │ ├── morph.cs │ ├── util.cs │ ├── wnhelp.cs │ ├── wordnet.cs │ └── wordnetclasses.cs ├── Misc ├── CheckoutInstructions.htm ├── CheckoutInstructions.swf └── CheckoutInstructions.wnk ├── Projects ├── Thanh │ ├── AssemblyInfo.cs │ ├── DemoTest.cs │ ├── ISimilarity.cs │ ├── Matcher │ │ ├── BipartiteMatcher.cs │ │ └── HeuristicMatcher.cs │ ├── Paper │ │ └── WordNetDotNet_Semantic_Similarity.pdf │ ├── Relatedness.cs │ ├── SentenceSimilarity.cs │ ├── SimilarGenerator.cs │ ├── TestData │ │ └── TestCollection.pdf │ ├── TextHelper │ │ ├── Acronym.cs │ │ ├── ExtOverlapCounter.cs │ │ ├── SimpleOverlapCounter.cs │ │ ├── StopWordsHandler.cs │ │ └── Tokeniser.cs │ ├── WordSenseDisambiguator.cs │ ├── WordSimilarity.cs │ ├── WordsMatching.csproj │ ├── WordsMatching.sln │ └── app.config ├── WordNetConsoleTest │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WordNetConsoleTest.csproj │ └── packages.config └── WordNetDT │ ├── AdvancedOptions.cs │ ├── AdvancedOptions.resx │ ├── AssemblyInfo.cs │ ├── EnableDT_Search.cs │ ├── LICENSE.txt │ ├── MyNamespaceSupportForCSharp.cs │ ├── Overview.cs │ ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── StartForm.cs │ ├── StartForm.designer.cs │ ├── StartForm.resx │ ├── UpgradeLog.htm │ ├── Wildcard.cs │ ├── Wildcard.resx │ ├── WordNetDT.csproj │ ├── WordNetDT.sln │ ├── WordNetDTLicense.txt │ ├── WordNetGlossary.txt │ ├── app.config │ ├── haspart.gif │ ├── haspartlv2.gif │ ├── intro.htm │ ├── spacer.gif │ ├── wildcard.designer.cs │ ├── wnb.txt │ └── wordnetdt.ico ├── Samples ├── Contributed │ └── Lexicon - Jeff Martin │ │ ├── AssemblyInfo.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Lexicon Sample.csproj │ │ ├── Lexicon Sample.sln │ │ └── Lexicon_Sample.Form1.resources ├── cs │ ├── Colour Formatted Sample │ │ ├── AdvancedOptions.cs │ │ ├── AdvancedOptions.resx │ │ ├── AssemblyInfo.cs │ │ ├── MyNamespaceSupportForCSharp.cs │ │ ├── StartForm.cs │ │ ├── StartForm.resx │ │ ├── WordNet.Net Colour Formatted Sample.csproj │ │ └── WordNet.Net Colour Formatted Sample.sln │ ├── Controls │ │ └── WordNetControls │ │ │ ├── AssemblyInfo.cs │ │ │ ├── MyNamespaceSupportForCSharp.cs │ │ │ ├── TreeControl.Designer.cs │ │ │ ├── TreeControl.cs │ │ │ ├── TreeControl.resx │ │ │ ├── WordNetColourFormat.Designer.cs │ │ │ ├── WordNetColourFormat.cs │ │ │ ├── WordNetColourFormat.resx │ │ │ └── WordNetControls.csproj │ └── TreeView │ │ ├── AdvancedOptions.cs │ │ ├── AdvancedOptions.resx │ │ ├── AssemblyInfo.cs │ │ ├── MyNamespaceSupportForCSharp.cs │ │ ├── StartForm.cs │ │ ├── StartForm.resx │ │ ├── WordNet.Net TreeView Sample.csproj │ │ └── WordNet.Net TreeView Sample.sln ├── license.txt └── vb │ ├── Asp.Net Sample │ ├── AssemblyInfo.vb │ ├── Default.aspx │ ├── Global.asax │ ├── Global.asax.resx │ ├── Global.asax.vb │ ├── WNBAspNet.vbproj │ ├── Web.config │ ├── default.aspx.resx │ ├── default.aspx.vb │ └── license.txt │ ├── Colour Formatted Sample │ ├── AdvancedOptions.resx │ ├── AdvancedOptions.vb │ ├── AssemblyInfo.vb │ ├── StartForm.resx │ ├── StartForm.vb │ ├── WordNet.Net Colour Formatted Sample.sln │ ├── WordNet.Net Colour Formatted Sample.vbproj │ ├── WordNet.Net Sample.exe.manifest │ ├── WordNet.Net Sample.vshost.exe.manifest │ └── license.txt │ ├── Controls │ └── WordNetControls │ │ ├── AssemblyInfo.vb │ │ ├── TreeControl.Designer.vb │ │ ├── TreeControl.resx │ │ ├── TreeControl.vb │ │ ├── WordNetColourFormat.Designer.vb │ │ ├── WordNetColourFormat.resx │ │ ├── WordNetColourFormat.vb │ │ ├── WordNetControls.sln │ │ └── WordNetControls.vbproj │ ├── Desktop Sample │ ├── AdvancedOptions.resx │ ├── AdvancedOptions.vb │ ├── AssemblyInfo.vb │ ├── BOOK01A.ICO │ ├── StartForm.resx │ ├── StartForm.vb │ ├── WordNet.Net Sample.exe.manifest │ ├── WordNet.Net Sample.sln │ ├── WordNet.Net Sample.vbproj │ └── license.txt │ ├── How To Do Things │ ├── Check Word Defined │ │ ├── AssemblyInfo.vb │ │ ├── Check Word Defined.sln │ │ ├── Check Word Defined.vbproj │ │ ├── MainForm.Designer.vb │ │ ├── MainForm.resx │ │ ├── MainForm.vb │ │ └── Program.vb │ └── Get Coordinate Terms for POS │ │ ├── AssemblyInfo.vb │ │ ├── Get Coordinate Terms for POS.sln │ │ ├── Get Coordinate Terms for POS.vbproj │ │ ├── MainForm.Designer.vb │ │ ├── MainForm.resx │ │ ├── MainForm.vb │ │ └── Program.vb │ ├── TreeView │ ├── AdvancedOptions.resx │ ├── AdvancedOptions.vb │ ├── AssemblyInfo.vb │ ├── StartForm.resx │ ├── StartForm.vb │ ├── WordNet.Net Sample.exe.manifest │ ├── WordNet.Net TreeView Sample.sln │ ├── WordNet.Net TreeView Sample.vbproj │ └── license.txt │ └── license.txt ├── Tools └── BinSearchTest │ ├── BinSearchTest.sln │ └── BinSearchTest │ ├── App.ico │ ├── AssemblyInfo.cs │ ├── BinSearchTest.csproj │ ├── Form1.cs │ └── Form1.resx ├── WordNet └── dict │ ├── .gitattributes │ ├── adj.exc │ ├── adv.exc │ ├── cntlist │ ├── cntlist.rev │ ├── cousin.exc │ ├── data.adj │ ├── data.adv │ ├── data.noun │ ├── data.verb │ ├── dbfiles │ ├── .gitattributes │ ├── adj.all │ ├── adj.pert │ ├── adj.ppl │ ├── adv.all │ ├── cntlist │ ├── noun.Tops │ ├── noun.act │ ├── noun.animal │ ├── noun.artifact │ ├── noun.attribute │ ├── noun.body │ ├── noun.cognition │ ├── noun.communication │ ├── noun.event │ ├── noun.feeling │ ├── noun.food │ ├── noun.group │ ├── noun.location │ ├── noun.motive │ ├── noun.object │ ├── noun.person │ ├── noun.phenomenon │ ├── noun.plant │ ├── noun.possession │ ├── noun.process │ ├── noun.quantity │ ├── noun.relation │ ├── noun.shape │ ├── noun.state │ ├── noun.substance │ ├── noun.time │ ├── verb.Framestext │ ├── verb.body │ ├── verb.change │ ├── verb.cognition │ ├── verb.communication │ ├── verb.competition │ ├── verb.consumption │ ├── verb.contact │ ├── verb.creation │ ├── verb.emotion │ ├── verb.motion │ ├── verb.perception │ ├── verb.possession │ ├── verb.social │ ├── verb.stative │ └── verb.weather │ ├── frames.vrb │ ├── index.adj │ ├── index.adv │ ├── index.noun │ ├── index.sense │ ├── index.verb │ ├── log.grind.2.1 │ ├── log.grind.3.1 │ ├── noun.exc │ ├── sentidx.vrb │ ├── sents.vrb │ ├── verb.Framestext │ └── verb.exc ├── lgpl.txt ├── readme.txt └── wordnetlicense.txt /.gitignore: -------------------------------------------------------------------------------- 1 | obj 2 | bin 3 | Backup 4 | .vs 5 | _UpgradeReport_Files 6 | -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/AssemblyInfo.cs -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/DoubleMetaphone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/DoubleMetaphone.cs -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/Metaphone.NET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/Metaphone.NET.csproj -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/Metaphone.NET.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/Metaphone.NET.csproj.user -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/ShortDoubleMetaphone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Double Metaphone/Metaphone.NET/ShortDoubleMetaphone.cs -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/a.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/a.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/b.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/b.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/c.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/c.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/d.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/d.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/e.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/e.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/f.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/f.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/g.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/g.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/h.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/h.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/i.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/i.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/j.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/j.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/k.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/k.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/l.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/l.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/m.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/m.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/n.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/n.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/o.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/o.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/p.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/p.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/q.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/q.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/r.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/r.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/s.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/s.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/t.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/t.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/u.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/u.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/v.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/v.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/w.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/w.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/x.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/x.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/y.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/y.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/Fullable/z.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/Fullable/z.lst -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/AssemblyInfo.cs -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/BrillTagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/BrillTagger.cs -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/BrillTagger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/BrillTagger.csproj -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/BrillTagger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/BrillTagger.sln -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/Formatter.cs -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/App.ico -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/AssemblyInfo.cs -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/Form1.cs -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/Form1.resx -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/TestBrill.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/TestBrill.csproj -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/TestBrill.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/brill_tagger_dotnet_port/TestBrill/TestBrill.sln -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/vbLike/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/vbLike/AssemblyInfo.vb -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/vbLike/vbLike.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/vbLike/vbLike.sln -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/vbLike/vbLike.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/vbLike/vbLike.vbproj -------------------------------------------------------------------------------- /3rd_Party_Tools_Data/vbLike/vblike.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/3rd_Party_Tools_Data/vbLike/vblike.vb -------------------------------------------------------------------------------- /Contributed Extras/Lexicon Class/Lexicon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Contributed Extras/Lexicon Class/Lexicon.cs -------------------------------------------------------------------------------- /Contributed Extras/Lexicon Class/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Contributed Extras/Lexicon Class/readme.txt -------------------------------------------------------------------------------- /Library/cs/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/AssemblyInfo.cs -------------------------------------------------------------------------------- /Library/cs/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/Class1.cs -------------------------------------------------------------------------------- /Library/cs/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/Index.cs -------------------------------------------------------------------------------- /Library/cs/Lexeme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/Lexeme.cs -------------------------------------------------------------------------------- /Library/cs/LexemeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/LexemeList.cs -------------------------------------------------------------------------------- /Library/cs/Lexicon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/Lexicon.cs -------------------------------------------------------------------------------- /Library/cs/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Library/cs/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/Properties/Settings.settings -------------------------------------------------------------------------------- /Library/cs/SemCor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/SemCor.cs -------------------------------------------------------------------------------- /Library/cs/SynSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/SynSet.cs -------------------------------------------------------------------------------- /Library/cs/SynSetList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/SynSetList.cs -------------------------------------------------------------------------------- /Library/cs/Synonym.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/Synonym.cs -------------------------------------------------------------------------------- /Library/cs/WordNet.Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/WordNet.Net.csproj -------------------------------------------------------------------------------- /Library/cs/WordNet.Net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/WordNet.Net.sln -------------------------------------------------------------------------------- /Library/cs/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/app.config -------------------------------------------------------------------------------- /Library/cs/bitset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/bitset.cs -------------------------------------------------------------------------------- /Library/cs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/license.txt -------------------------------------------------------------------------------- /Library/cs/morph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/morph.cs -------------------------------------------------------------------------------- /Library/cs/util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/util.cs -------------------------------------------------------------------------------- /Library/cs/wnhelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/wnhelp.cs -------------------------------------------------------------------------------- /Library/cs/wordnet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/wordnet.cs -------------------------------------------------------------------------------- /Library/cs/wordnetclasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Library/cs/wordnetclasses.cs -------------------------------------------------------------------------------- /Misc/CheckoutInstructions.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Misc/CheckoutInstructions.htm -------------------------------------------------------------------------------- /Misc/CheckoutInstructions.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Misc/CheckoutInstructions.swf -------------------------------------------------------------------------------- /Misc/CheckoutInstructions.wnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Misc/CheckoutInstructions.wnk -------------------------------------------------------------------------------- /Projects/Thanh/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/AssemblyInfo.cs -------------------------------------------------------------------------------- /Projects/Thanh/DemoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/DemoTest.cs -------------------------------------------------------------------------------- /Projects/Thanh/ISimilarity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/ISimilarity.cs -------------------------------------------------------------------------------- /Projects/Thanh/Matcher/BipartiteMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/Matcher/BipartiteMatcher.cs -------------------------------------------------------------------------------- /Projects/Thanh/Matcher/HeuristicMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/Matcher/HeuristicMatcher.cs -------------------------------------------------------------------------------- /Projects/Thanh/Paper/WordNetDotNet_Semantic_Similarity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/Paper/WordNetDotNet_Semantic_Similarity.pdf -------------------------------------------------------------------------------- /Projects/Thanh/Relatedness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/Relatedness.cs -------------------------------------------------------------------------------- /Projects/Thanh/SentenceSimilarity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/SentenceSimilarity.cs -------------------------------------------------------------------------------- /Projects/Thanh/SimilarGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/SimilarGenerator.cs -------------------------------------------------------------------------------- /Projects/Thanh/TestData/TestCollection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/TestData/TestCollection.pdf -------------------------------------------------------------------------------- /Projects/Thanh/TextHelper/Acronym.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/TextHelper/Acronym.cs -------------------------------------------------------------------------------- /Projects/Thanh/TextHelper/ExtOverlapCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/TextHelper/ExtOverlapCounter.cs -------------------------------------------------------------------------------- /Projects/Thanh/TextHelper/SimpleOverlapCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/TextHelper/SimpleOverlapCounter.cs -------------------------------------------------------------------------------- /Projects/Thanh/TextHelper/StopWordsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/TextHelper/StopWordsHandler.cs -------------------------------------------------------------------------------- /Projects/Thanh/TextHelper/Tokeniser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/TextHelper/Tokeniser.cs -------------------------------------------------------------------------------- /Projects/Thanh/WordSenseDisambiguator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/WordSenseDisambiguator.cs -------------------------------------------------------------------------------- /Projects/Thanh/WordSimilarity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/WordSimilarity.cs -------------------------------------------------------------------------------- /Projects/Thanh/WordsMatching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/WordsMatching.csproj -------------------------------------------------------------------------------- /Projects/Thanh/WordsMatching.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/WordsMatching.sln -------------------------------------------------------------------------------- /Projects/Thanh/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/Thanh/app.config -------------------------------------------------------------------------------- /Projects/WordNetConsoleTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetConsoleTest/App.config -------------------------------------------------------------------------------- /Projects/WordNetConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetConsoleTest/Program.cs -------------------------------------------------------------------------------- /Projects/WordNetConsoleTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetConsoleTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Projects/WordNetConsoleTest/WordNetConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetConsoleTest/WordNetConsoleTest.csproj -------------------------------------------------------------------------------- /Projects/WordNetConsoleTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetConsoleTest/packages.config -------------------------------------------------------------------------------- /Projects/WordNetDT/AdvancedOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/AdvancedOptions.cs -------------------------------------------------------------------------------- /Projects/WordNetDT/AdvancedOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/AdvancedOptions.resx -------------------------------------------------------------------------------- /Projects/WordNetDT/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/AssemblyInfo.cs -------------------------------------------------------------------------------- /Projects/WordNetDT/EnableDT_Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/EnableDT_Search.cs -------------------------------------------------------------------------------- /Projects/WordNetDT/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/LICENSE.txt -------------------------------------------------------------------------------- /Projects/WordNetDT/MyNamespaceSupportForCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/MyNamespaceSupportForCSharp.cs -------------------------------------------------------------------------------- /Projects/WordNetDT/Overview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/Overview.cs -------------------------------------------------------------------------------- /Projects/WordNetDT/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Projects/WordNetDT/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/Properties/Resources.resx -------------------------------------------------------------------------------- /Projects/WordNetDT/StartForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/StartForm.cs -------------------------------------------------------------------------------- /Projects/WordNetDT/StartForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/StartForm.designer.cs -------------------------------------------------------------------------------- /Projects/WordNetDT/StartForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/StartForm.resx -------------------------------------------------------------------------------- /Projects/WordNetDT/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/UpgradeLog.htm -------------------------------------------------------------------------------- /Projects/WordNetDT/Wildcard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/Wildcard.cs -------------------------------------------------------------------------------- /Projects/WordNetDT/Wildcard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/Wildcard.resx -------------------------------------------------------------------------------- /Projects/WordNetDT/WordNetDT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/WordNetDT.csproj -------------------------------------------------------------------------------- /Projects/WordNetDT/WordNetDT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/WordNetDT.sln -------------------------------------------------------------------------------- /Projects/WordNetDT/WordNetDTLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/WordNetDTLicense.txt -------------------------------------------------------------------------------- /Projects/WordNetDT/WordNetGlossary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/WordNetGlossary.txt -------------------------------------------------------------------------------- /Projects/WordNetDT/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/app.config -------------------------------------------------------------------------------- /Projects/WordNetDT/haspart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/haspart.gif -------------------------------------------------------------------------------- /Projects/WordNetDT/haspartlv2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/haspartlv2.gif -------------------------------------------------------------------------------- /Projects/WordNetDT/intro.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/intro.htm -------------------------------------------------------------------------------- /Projects/WordNetDT/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/spacer.gif -------------------------------------------------------------------------------- /Projects/WordNetDT/wildcard.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/wildcard.designer.cs -------------------------------------------------------------------------------- /Projects/WordNetDT/wnb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/wnb.txt -------------------------------------------------------------------------------- /Projects/WordNetDT/wordnetdt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Projects/WordNetDT/wordnetdt.ico -------------------------------------------------------------------------------- /Samples/Contributed/Lexicon - Jeff Martin/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/Contributed/Lexicon - Jeff Martin/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Contributed/Lexicon - Jeff Martin/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/Contributed/Lexicon - Jeff Martin/Form1.cs -------------------------------------------------------------------------------- /Samples/Contributed/Lexicon - Jeff Martin/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/Contributed/Lexicon - Jeff Martin/Form1.resx -------------------------------------------------------------------------------- /Samples/Contributed/Lexicon - Jeff Martin/Lexicon Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/Contributed/Lexicon - Jeff Martin/Lexicon Sample.csproj -------------------------------------------------------------------------------- /Samples/Contributed/Lexicon - Jeff Martin/Lexicon Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/Contributed/Lexicon - Jeff Martin/Lexicon Sample.sln -------------------------------------------------------------------------------- /Samples/Contributed/Lexicon - Jeff Martin/Lexicon_Sample.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/Contributed/Lexicon - Jeff Martin/Lexicon_Sample.Form1.resources -------------------------------------------------------------------------------- /Samples/cs/Colour Formatted Sample/AdvancedOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Colour Formatted Sample/AdvancedOptions.cs -------------------------------------------------------------------------------- /Samples/cs/Colour Formatted Sample/AdvancedOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Colour Formatted Sample/AdvancedOptions.resx -------------------------------------------------------------------------------- /Samples/cs/Colour Formatted Sample/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Colour Formatted Sample/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/cs/Colour Formatted Sample/MyNamespaceSupportForCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Colour Formatted Sample/MyNamespaceSupportForCSharp.cs -------------------------------------------------------------------------------- /Samples/cs/Colour Formatted Sample/StartForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Colour Formatted Sample/StartForm.cs -------------------------------------------------------------------------------- /Samples/cs/Colour Formatted Sample/StartForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Colour Formatted Sample/StartForm.resx -------------------------------------------------------------------------------- /Samples/cs/Colour Formatted Sample/WordNet.Net Colour Formatted Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Colour Formatted Sample/WordNet.Net Colour Formatted Sample.csproj -------------------------------------------------------------------------------- /Samples/cs/Colour Formatted Sample/WordNet.Net Colour Formatted Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Colour Formatted Sample/WordNet.Net Colour Formatted Sample.sln -------------------------------------------------------------------------------- /Samples/cs/Controls/WordNetControls/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Controls/WordNetControls/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/cs/Controls/WordNetControls/MyNamespaceSupportForCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Controls/WordNetControls/MyNamespaceSupportForCSharp.cs -------------------------------------------------------------------------------- /Samples/cs/Controls/WordNetControls/TreeControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Controls/WordNetControls/TreeControl.Designer.cs -------------------------------------------------------------------------------- /Samples/cs/Controls/WordNetControls/TreeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Controls/WordNetControls/TreeControl.cs -------------------------------------------------------------------------------- /Samples/cs/Controls/WordNetControls/TreeControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Controls/WordNetControls/TreeControl.resx -------------------------------------------------------------------------------- /Samples/cs/Controls/WordNetControls/WordNetColourFormat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Controls/WordNetControls/WordNetColourFormat.Designer.cs -------------------------------------------------------------------------------- /Samples/cs/Controls/WordNetControls/WordNetColourFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Controls/WordNetControls/WordNetColourFormat.cs -------------------------------------------------------------------------------- /Samples/cs/Controls/WordNetControls/WordNetColourFormat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Controls/WordNetControls/WordNetColourFormat.resx -------------------------------------------------------------------------------- /Samples/cs/Controls/WordNetControls/WordNetControls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/Controls/WordNetControls/WordNetControls.csproj -------------------------------------------------------------------------------- /Samples/cs/TreeView/AdvancedOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/TreeView/AdvancedOptions.cs -------------------------------------------------------------------------------- /Samples/cs/TreeView/AdvancedOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/TreeView/AdvancedOptions.resx -------------------------------------------------------------------------------- /Samples/cs/TreeView/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/TreeView/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/cs/TreeView/MyNamespaceSupportForCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/TreeView/MyNamespaceSupportForCSharp.cs -------------------------------------------------------------------------------- /Samples/cs/TreeView/StartForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/TreeView/StartForm.cs -------------------------------------------------------------------------------- /Samples/cs/TreeView/StartForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/TreeView/StartForm.resx -------------------------------------------------------------------------------- /Samples/cs/TreeView/WordNet.Net TreeView Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/TreeView/WordNet.Net TreeView Sample.csproj -------------------------------------------------------------------------------- /Samples/cs/TreeView/WordNet.Net TreeView Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/cs/TreeView/WordNet.Net TreeView Sample.sln -------------------------------------------------------------------------------- /Samples/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/license.txt -------------------------------------------------------------------------------- /Samples/vb/Asp.Net Sample/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Asp.Net Sample/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/vb/Asp.Net Sample/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Asp.Net Sample/Default.aspx -------------------------------------------------------------------------------- /Samples/vb/Asp.Net Sample/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Asp.Net Sample/Global.asax -------------------------------------------------------------------------------- /Samples/vb/Asp.Net Sample/Global.asax.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Asp.Net Sample/Global.asax.resx -------------------------------------------------------------------------------- /Samples/vb/Asp.Net Sample/Global.asax.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Asp.Net Sample/Global.asax.vb -------------------------------------------------------------------------------- /Samples/vb/Asp.Net Sample/WNBAspNet.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Asp.Net Sample/WNBAspNet.vbproj -------------------------------------------------------------------------------- /Samples/vb/Asp.Net Sample/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Asp.Net Sample/Web.config -------------------------------------------------------------------------------- /Samples/vb/Asp.Net Sample/default.aspx.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Asp.Net Sample/default.aspx.resx -------------------------------------------------------------------------------- /Samples/vb/Asp.Net Sample/default.aspx.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Asp.Net Sample/default.aspx.vb -------------------------------------------------------------------------------- /Samples/vb/Asp.Net Sample/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Asp.Net Sample/license.txt -------------------------------------------------------------------------------- /Samples/vb/Colour Formatted Sample/AdvancedOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Colour Formatted Sample/AdvancedOptions.resx -------------------------------------------------------------------------------- /Samples/vb/Colour Formatted Sample/AdvancedOptions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Colour Formatted Sample/AdvancedOptions.vb -------------------------------------------------------------------------------- /Samples/vb/Colour Formatted Sample/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Colour Formatted Sample/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/vb/Colour Formatted Sample/StartForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Colour Formatted Sample/StartForm.resx -------------------------------------------------------------------------------- /Samples/vb/Colour Formatted Sample/StartForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Colour Formatted Sample/StartForm.vb -------------------------------------------------------------------------------- /Samples/vb/Colour Formatted Sample/WordNet.Net Colour Formatted Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Colour Formatted Sample/WordNet.Net Colour Formatted Sample.sln -------------------------------------------------------------------------------- /Samples/vb/Colour Formatted Sample/WordNet.Net Colour Formatted Sample.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Colour Formatted Sample/WordNet.Net Colour Formatted Sample.vbproj -------------------------------------------------------------------------------- /Samples/vb/Colour Formatted Sample/WordNet.Net Sample.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Colour Formatted Sample/WordNet.Net Sample.exe.manifest -------------------------------------------------------------------------------- /Samples/vb/Colour Formatted Sample/WordNet.Net Sample.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Colour Formatted Sample/WordNet.Net Sample.vshost.exe.manifest -------------------------------------------------------------------------------- /Samples/vb/Colour Formatted Sample/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Colour Formatted Sample/license.txt -------------------------------------------------------------------------------- /Samples/vb/Controls/WordNetControls/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Controls/WordNetControls/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/vb/Controls/WordNetControls/TreeControl.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Controls/WordNetControls/TreeControl.Designer.vb -------------------------------------------------------------------------------- /Samples/vb/Controls/WordNetControls/TreeControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Controls/WordNetControls/TreeControl.resx -------------------------------------------------------------------------------- /Samples/vb/Controls/WordNetControls/TreeControl.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Controls/WordNetControls/TreeControl.vb -------------------------------------------------------------------------------- /Samples/vb/Controls/WordNetControls/WordNetColourFormat.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Controls/WordNetControls/WordNetColourFormat.Designer.vb -------------------------------------------------------------------------------- /Samples/vb/Controls/WordNetControls/WordNetColourFormat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Controls/WordNetControls/WordNetColourFormat.resx -------------------------------------------------------------------------------- /Samples/vb/Controls/WordNetControls/WordNetColourFormat.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Controls/WordNetControls/WordNetColourFormat.vb -------------------------------------------------------------------------------- /Samples/vb/Controls/WordNetControls/WordNetControls.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Controls/WordNetControls/WordNetControls.sln -------------------------------------------------------------------------------- /Samples/vb/Controls/WordNetControls/WordNetControls.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Controls/WordNetControls/WordNetControls.vbproj -------------------------------------------------------------------------------- /Samples/vb/Desktop Sample/AdvancedOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Desktop Sample/AdvancedOptions.resx -------------------------------------------------------------------------------- /Samples/vb/Desktop Sample/AdvancedOptions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Desktop Sample/AdvancedOptions.vb -------------------------------------------------------------------------------- /Samples/vb/Desktop Sample/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Desktop Sample/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/vb/Desktop Sample/BOOK01A.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Desktop Sample/BOOK01A.ICO -------------------------------------------------------------------------------- /Samples/vb/Desktop Sample/StartForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Desktop Sample/StartForm.resx -------------------------------------------------------------------------------- /Samples/vb/Desktop Sample/StartForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Desktop Sample/StartForm.vb -------------------------------------------------------------------------------- /Samples/vb/Desktop Sample/WordNet.Net Sample.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Desktop Sample/WordNet.Net Sample.exe.manifest -------------------------------------------------------------------------------- /Samples/vb/Desktop Sample/WordNet.Net Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Desktop Sample/WordNet.Net Sample.sln -------------------------------------------------------------------------------- /Samples/vb/Desktop Sample/WordNet.Net Sample.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Desktop Sample/WordNet.Net Sample.vbproj -------------------------------------------------------------------------------- /Samples/vb/Desktop Sample/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/Desktop Sample/license.txt -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Check Word Defined/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Check Word Defined/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Check Word Defined/Check Word Defined.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Check Word Defined/Check Word Defined.sln -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Check Word Defined/Check Word Defined.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Check Word Defined/Check Word Defined.vbproj -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Check Word Defined/MainForm.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Check Word Defined/MainForm.Designer.vb -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Check Word Defined/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Check Word Defined/MainForm.resx -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Check Word Defined/MainForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Check Word Defined/MainForm.vb -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Check Word Defined/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Check Word Defined/Program.vb -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Get Coordinate Terms for POS/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Get Coordinate Terms for POS/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Get Coordinate Terms for POS/Get Coordinate Terms for POS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Get Coordinate Terms for POS/Get Coordinate Terms for POS.sln -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Get Coordinate Terms for POS/Get Coordinate Terms for POS.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Get Coordinate Terms for POS/Get Coordinate Terms for POS.vbproj -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Get Coordinate Terms for POS/MainForm.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Get Coordinate Terms for POS/MainForm.Designer.vb -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Get Coordinate Terms for POS/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Get Coordinate Terms for POS/MainForm.resx -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Get Coordinate Terms for POS/MainForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Get Coordinate Terms for POS/MainForm.vb -------------------------------------------------------------------------------- /Samples/vb/How To Do Things/Get Coordinate Terms for POS/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/How To Do Things/Get Coordinate Terms for POS/Program.vb -------------------------------------------------------------------------------- /Samples/vb/TreeView/AdvancedOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/TreeView/AdvancedOptions.resx -------------------------------------------------------------------------------- /Samples/vb/TreeView/AdvancedOptions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/TreeView/AdvancedOptions.vb -------------------------------------------------------------------------------- /Samples/vb/TreeView/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/TreeView/AssemblyInfo.vb -------------------------------------------------------------------------------- /Samples/vb/TreeView/StartForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/TreeView/StartForm.resx -------------------------------------------------------------------------------- /Samples/vb/TreeView/StartForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/TreeView/StartForm.vb -------------------------------------------------------------------------------- /Samples/vb/TreeView/WordNet.Net Sample.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/TreeView/WordNet.Net Sample.exe.manifest -------------------------------------------------------------------------------- /Samples/vb/TreeView/WordNet.Net TreeView Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/TreeView/WordNet.Net TreeView Sample.sln -------------------------------------------------------------------------------- /Samples/vb/TreeView/WordNet.Net TreeView Sample.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/TreeView/WordNet.Net TreeView Sample.vbproj -------------------------------------------------------------------------------- /Samples/vb/TreeView/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/TreeView/license.txt -------------------------------------------------------------------------------- /Samples/vb/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Samples/vb/license.txt -------------------------------------------------------------------------------- /Tools/BinSearchTest/BinSearchTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Tools/BinSearchTest/BinSearchTest.sln -------------------------------------------------------------------------------- /Tools/BinSearchTest/BinSearchTest/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Tools/BinSearchTest/BinSearchTest/App.ico -------------------------------------------------------------------------------- /Tools/BinSearchTest/BinSearchTest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Tools/BinSearchTest/BinSearchTest/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/BinSearchTest/BinSearchTest/BinSearchTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Tools/BinSearchTest/BinSearchTest/BinSearchTest.csproj -------------------------------------------------------------------------------- /Tools/BinSearchTest/BinSearchTest/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Tools/BinSearchTest/BinSearchTest/Form1.cs -------------------------------------------------------------------------------- /Tools/BinSearchTest/BinSearchTest/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/Tools/BinSearchTest/BinSearchTest/Form1.resx -------------------------------------------------------------------------------- /WordNet/dict/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/.gitattributes -------------------------------------------------------------------------------- /WordNet/dict/adj.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/adj.exc -------------------------------------------------------------------------------- /WordNet/dict/adv.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/adv.exc -------------------------------------------------------------------------------- /WordNet/dict/cntlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/cntlist -------------------------------------------------------------------------------- /WordNet/dict/cntlist.rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/cntlist.rev -------------------------------------------------------------------------------- /WordNet/dict/cousin.exc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WordNet/dict/data.adj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/data.adj -------------------------------------------------------------------------------- /WordNet/dict/data.adv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/data.adv -------------------------------------------------------------------------------- /WordNet/dict/data.noun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/data.noun -------------------------------------------------------------------------------- /WordNet/dict/data.verb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/data.verb -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/.gitattributes -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/adj.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/adj.all -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/adj.pert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/adj.pert -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/adj.ppl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/adj.ppl -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/adv.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/adv.all -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/cntlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/cntlist -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.Tops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.Tops -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.act -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.animal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.animal -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.artifact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.artifact -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.attribute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.attribute -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.body -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.cognition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.cognition -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.communication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.communication -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.event: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.event -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.feeling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.feeling -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.food: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.food -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.group -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.location -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.motive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.motive -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.object -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.person: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.person -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.phenomenon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.phenomenon -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.plant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.plant -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.possession: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.possession -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.process -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.quantity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.quantity -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.relation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.relation -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.shape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.shape -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.state -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.substance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.substance -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/noun.time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/noun.time -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.Framestext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.Framestext -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.body -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.change: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.change -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.cognition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.cognition -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.communication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.communication -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.competition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.competition -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.consumption: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.consumption -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.contact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.contact -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.creation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.creation -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.emotion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.emotion -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.motion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.motion -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.perception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.perception -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.possession: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.possession -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.social: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.social -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.stative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.stative -------------------------------------------------------------------------------- /WordNet/dict/dbfiles/verb.weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/dbfiles/verb.weather -------------------------------------------------------------------------------- /WordNet/dict/frames.vrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/frames.vrb -------------------------------------------------------------------------------- /WordNet/dict/index.adj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/index.adj -------------------------------------------------------------------------------- /WordNet/dict/index.adv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/index.adv -------------------------------------------------------------------------------- /WordNet/dict/index.noun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/index.noun -------------------------------------------------------------------------------- /WordNet/dict/index.sense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/index.sense -------------------------------------------------------------------------------- /WordNet/dict/index.verb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/index.verb -------------------------------------------------------------------------------- /WordNet/dict/log.grind.2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/log.grind.2.1 -------------------------------------------------------------------------------- /WordNet/dict/log.grind.3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/log.grind.3.1 -------------------------------------------------------------------------------- /WordNet/dict/noun.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/noun.exc -------------------------------------------------------------------------------- /WordNet/dict/sentidx.vrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/sentidx.vrb -------------------------------------------------------------------------------- /WordNet/dict/sents.vrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/sents.vrb -------------------------------------------------------------------------------- /WordNet/dict/verb.Framestext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/verb.Framestext -------------------------------------------------------------------------------- /WordNet/dict/verb.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/WordNet/dict/verb.exc -------------------------------------------------------------------------------- /lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/lgpl.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/readme.txt -------------------------------------------------------------------------------- /wordnetlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebswift/wordnetdotnet/HEAD/wordnetlicense.txt --------------------------------------------------------------------------------