Bing API – Using the Bing Translator with C#
This will be the first post of a series about creating a class library for Microsoft Bing APIs in C#. I had ignore Microsoft offering in the past because Google APIs have always done the work for me; however, I recently worked in my first WP7 application and found Bing services to be really mature and capable of delivering results just as good as Google’s. Let’s Begin NOTE: You need to register and create an AppID at http://www.bing.com/developers. Create a new project called .NET 4.0 Class Library called DeveloperCaster.Bing; we will wrap all API calls within this class library. I want to be able to expand this library beyond the translation API so I will leave room to extend it in future posts. We will begin by adding the following objects: The Bing...