Steps
- Open Visual Studio in your system
- Select Console Applciation template and give as name "DeleteList"
- Add a Microsoft.Cleint Assembly refrence file in right side refrence tab in visual studio.
- Replace Program.cs with the source code below.
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.SharePoint.Client;
- namespace DeleteList
- {
- class Program
- {
- static void Main(string[] args)
- {
-
-
- ClientContext clientContext = new
- ClientContext("http://gauti.sharepoint.com/sites/SP/");
-
-
- Web web = clientContext.Web;
-
-
-
- List list = web.Lists.GetByTitle("NewList");
-
-
-
- list.DeleteObject();
-
-
-
- clientContext.ExecuteQuery();
- }
- }
Output
Hit F5 and see the magix happend in SharePoint 2013. Hope you have enjoyed this.!!! :-)