Enable or Disable Audience targeting of a list in SharePoint

Below code describes how to enable or Disable Audience targeting of a list in sharepoint using client side object model Add reference “Microsoft.sharepoint.client.dll” and “Microsoft.sharepoint.client.Runtime.dll”. Write Below Code.   using Microsoft.SharePoint.Client; namespace ConsoleApplication {       class Program     {         static void Main(string[] args)         {             using (ClientContext ctx=new ClientContext(“SiteUrl”))             {                 //Apply Credential                 ctx.Credentials = new […]