Cameron Barge
Cameron Barge

Reputation: 309

Html Agility Pack Implementation

I am currently working on a C# program in Assembly where I am trying to implement Google Translate in my program. I am aware that I have to use HTMLAgilityPack in my program for it to work. I found this post and downloaded the HTMLAgilityPack, however when he says

1) and build the HTMLAgilityPack solution.
2) In your application, add a reference to HTMLAgilityPack.dll in the HTMLAgilityPack\Debug (or Realease) \bin folder.

I do not know what he wants me to do. So far, I have downloaded and extracted the HTMLAgilityPack folder. In the folder, I have the files:
Net20, Net40, Net40-client, Net45, sl3-wp, sl4, sl4-windowsphone71, sl5, winrt45 If anybody can elaborate on what procedures I need to do, it would be greatly appreciated!

Upvotes: 2

Views: 1466

Answers (2)

user1704366
user1704366

Reputation:

Why dont you look at the API? There is a good example here...

http://forum.codecall.net/topic/64790-c-translator-using-google-api/

Upvotes: 1

sczdavos
sczdavos

Reputation: 2063

In Visual Studio. There is in Solution Explorer folder named Reference -> right click -> add reference choose from hdd *.dll.

VS adding reference

After it you'll be able using methods from this Library.

Upvotes: 0

Related Questions