I am creating a Windows application the will access a sharepoint website. There for I need to use Microsoft.SharePoint.Client.dll and Microsoft.SharePoint.Client.runtime.dll in project.
I have add them in my references but cannot use it. Can someone help me?
Please see the issue here: Issue
using Microsoft.SharePoint.Client;
namespace WpfApplication3
{
public partial class MainWindow : Window
{
public MainWindow()
{
ClientContext context = new ClientContext("http://hp");
InitializeComponent();
}
}
}