Steps
- Open Visual Studio in your system.
- Select Console Applciation template and give as name .
- Add a Microsoft.Cleint Assembly refrence file in right side refrence tab in visual studio.
- Replace Program.cs with the source code.
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.SharePoint.Client;
- namespace CSOMCodeSamples
- {
- class Program
- {
- static void Main(string[] args)
- {
- // ClientContext - Get the context for the SharePoint Site
- ClientContext clientContext = new ClientContext("http://gauti.sharepoint.com/sites/gp/");
- // Get the SharePoint web
- Web web = clientContext.Web;
- // Get the list by Title
- List list = web.Lists.GetByTitle("CustomList");
- // Get the specific view by Title
- View view = list.Views.GetByTitle("gvrView");
- // Delete the list view
- view.DeleteObject();
- // Execute the query to the server
- clientContext.ExecuteQuery();
- }
- }
- }
Output
Hit F5 and check the output .
Thanks for reading my blogs.

Vijay SPosted Jun 17, 2015, 8:58 AM
Good one