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 c
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.SharePoint.Client;
- namespace CSOMCodeSamples
- 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/sp1/");
- // Get the SharePoint web
- Web web = clientContext.Web;
- List list = web.Lists.GetByTitle("CustomList");
- // Get all the view
- for the custom list
- ViewCollection viewColl = list.Views;
- // Specify the columns that should be displayed
- string[] viewFields = {"Column1"};
- // Specifies the properties used to create a new list view
- ViewCreationInformation creationInfo = new ViewCreationInformation();
- creationInfo.Title = "GVRNewView";
- creationInfo.RowLimit = 50;
- creationInfo.ViewFields = viewFields;
- creationInfo.ViewTypeKind = ViewType.None;
- creationInfo.SetAsDefaultView = true;
- viewColl.Add(creationInfo);
- clientContext.ExecuteQuery();
- }
- }
- }
Hit F5 and check the output.
Thanks for reading my blogs.

Vijay SPosted Jun 17, 2015, 8:59 AM
Good one
Gowtham RajamanickamPosted May 14, 2015, 1:28 PM
thank u so much for identifying..
Gowtham RajamanickamPosted May 14, 2015, 1:28 PM
Some typo error....will remove the extra added line
Vipin TyagiPosted May 14, 2015, 5:39 AM
Is it Working as we have 2 CSOMCodeSamples namespaces