GoldStaR.4305:

Hey! I don’t really know how to add GwApiNET to Visual Studio, it doesn’t find the folder with the extenders that on my computer.
I’m kinda new at this, so I would love to get some help.
Thanks!

EDIT: Also if there is any “easy” way to use GW2’s API in Visual Studio (C#) then I would like to know, I really want to use the API.

darthmaim.6017:

You should use NuGet to install GW2.NET. In their wiki you can find detailed instructions: https://github.com/Ruhrpottpatriot/GW2.NET/wiki

Elfo Bianco.3786:

Hi! I don’t use GwApiNET, because I want add API in my App by myself. Anyway if you want to read API data in Visual Studio (C#), you could do it manually creating a function that read data based of the kind of API you are using.
Or, in a better way, there is Jason.NET at http://www.newtonsoft.com/json that let you serialize or deserialize the API based on the object you create.

For example an object like that:

{
string id;
string name;
IList<string> permissions;
}

let you read easily the API:2/tokeninfo.