how to use System.Data.Services.Client in C#?

bing, bing-api, c#

Solution

Add Reference

System.Data.Services.Client

Problem

I was trying to use the `Bing Search API` in my C# program. When I try `using System.Data.Services.Client;` in my program, it gives me the following error: `The type or namespace name 'Services' does not exist in the namespace 'System.Data' (are you missing an assembly reference?)` I am using Microsoft Visual Studio 2010 in Windows 7 64bit version. & I am new to programing and not sure how to set assembly references. Can I please tell me how can I solve this?

Original source