I got the following error while running the application. This json problem is due to the newtonsoft json dll could not be added to the project reference.
To begin install newtonsoft json 4.5 in the project by running the following command in the nuget package manager console and enter.
PM> Install-Package Newtonsoft.Json -Version 4.5.11
The newtonsoft json dll will automatically get downloaded and installed in the project and referenced in the bin folder.
Post your comments / questions
Recent Article
- How to decode HTML character code in c#?
- How to save the xml file to a particular location?
- How to use if else statement in c++?
- How to use godaddy domain name with another godaddy hosting account?
- Restore of database 'DATABASE' failed. (Microsoft.SqlServer.Management.RelationalEngineTasks)
- How to programmatically modifying the AppSetting value in web.config using c#?
- TypeError [ERR_INVALID_CALLBACK]: Callback must be a function. Received undefined
- How to calculate the age from jQuery ui datepicker using c#?
Related Article