Info
| Version: | 1.0.0 |
| Author(s): | Hassan Fakhari |
| Last Update: | Monday, December 21, 2015 |
| .NET Fiddle: | Create the first Fiddle |
| NuGet Url: | https://www.nuget.org/packages/WikiSharp |
Install
Install-Package WikiSharp
dotnet add package WikiSharp
paket add WikiSharp
WikiSharp Download (Unzip the "nupkg" after downloading)
Dependencies
- SampleDependency(>= 1.0.0)
Tags
WikiSharp.Wiki wiki = new WikiSharp.Wiki();
var temp = await wiki.Search(textBox1.Text);
foreach (string a in temp.Values)
{
Console.writeLine(a);
}
}.