(edited by GoldStaR.4305)
How do I add GwApiNET to Visual Studio?
heya
You should use NuGet to install GW2.NET. In their wiki you can find detailed instructions: https://github.com/Ruhrpottpatriot/GW2.NET/wiki
(edited by darthmaim.6017)
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.