I'm just trying Deserialize a Json with Newtonsoft (already with Ninja libraries).
My instruction is: Root ro = JsonConvert.DeserializeObject<Root>(Json);
In my machine works fine but others it seem has a Library called "ProblematicLibrary.dll" that also it seems to have the same method names and raises an error when importing the indicator o when compiling (The type "Newtonsoft.Json.JsonConvert" exist in both "...ProblematicLibrary.dll").
I tried "using Newtonsoft.Json.JsonConvert" to call directly that metoth but the message persists.
Also some instrucion like:
Assembly newtonsoftAssembly = Assembly.Load("Newtonsoft.Json");
Type jsonConvertType = newtonsoftAssembly.GetType("Newtonsoft.Json.JsonCo nvert");
To call directly that library but it doesn't work.

Comment