I am trying to use the Dropbox.API code that is listed here:
https://github.com/dropbox/dropbox-sdk-dotnet/tree/master/dropbox-sdk-dotnet/Examples/SimpleTest
I copied their Program.cs into my Program.cs without making other changes to other files in my solution/project.
I am getting
The type or namespace name "WebRequestHandler" could not be found.
Despite having this using statement:
using System.Net.Http;
The help text says to add an assembly reference, but I don't know what I would add.
I tried moving the using System.Net.Http
to both inside and outside the class.
I am new to C# and .Net development so expect this to be a really newbie problem.