Unhandled exception of type "System.IO.FileNotFoundException" in VkNet.dll
Additional information: Could not load file or assembly "Newtonsoft.Json, Version = 4.5.0.0, Culture = neutral, PublicKeyToken = 30ad4fe6b2a6aeed" or one of their dependencies. Cannot find the specified file.
This error pops up when trying to get all the photos of the user.
private void button1_Click(object sender, EventArgs e) { var getAll = vk.Photo.GetAll(Convert.ToInt32(textBox1.Text), true, 20, 0, true, false); foreach (var photos in getAll) { textBox1.Text = photos.CreateTime.ToString(); } } Tell me, please, what's the problem? Login is successful.