Steps
- Open Visual Studio in your system
- Select Console Applciation template and give as name "GetallList"
- 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 GetallList
- {
- class Program
- {
- static void Main(string[] args)
- {
- // ClientContext - Get the context for the SharePoint Site
- ClientContext clientContext = new ClientContext("http://gauti.sharepoint.com/sites/SP");
- // Get the SharePoint web
- Web web = clientContext.Web;
- // Get the SharePoint list collection for the web
- ListCollection listColl = web.Lists;
- // Retrieve the list collection properties
- clientContext.Load(listColl);
- // Execute the query to the server.
- clientContext.ExecuteQuery();
- // Loop through all the list
- foreach(List list in listColl)
- {
- // Display the list title and ID
- Console.WriteLine("List Name: " + list.Title + "; ID: " + list.Id);
- }
- Console.ReadLine();
- }
- }
- }
Hit F5 and Check the Output. Hope you have enjoyed this.!!! :-)

Vijay SPosted Jun 17, 2015, 9:19 AM
Good one