Skip to content
This repository has been archived by the owner on Jan 5, 2022. It is now read-only.
Clement-Jean edited this page Sep 28, 2018 · 4 revisions

Welcome to the AnkiSharp wiki!

Getting started

Download

PM> Install-Package AnkiSharp -Version 1.3.1

Start using it

Here is a basic example of how to use the library:

AnkiSharp.Anki test = new AnkiSharp.Anki(_NAME_OF_ANKI_PACKAGE_);

test.AddItem("Hello", "Bonjour");
test.AddItem("How are you ?", "Comment ca va ?");
test.AddItem("Flower", "fleur");
test.AddItem("House", "Maison");

test.CreateApkgFile(_PATH_FOR_ANKI_FILE_);

Understanding more

This wiki will define all the functions you can use when you downloaded but also the private ones. The purpose is to let you understand the process of them and maybe to get you involved in the project.

Doing more

As you will see in each of the wiki pages, there is an example provided to help you understand the features. Don't hesitate to mix them if you have an idea, get your hands dirty.

Start

Here is you starting point : Anki constructor

You can then click on "Next function" on the bottom of each wiki page to follow the entire tutorial.