Answer the question
In order to leave comments, you need to log in
How to provide a reader in JSON?
Here is such a provision:
XmlReader xmlReader = XmlReader.Create(fileStream);
JsonReader jsonReader = JsonReader.Create(fileStream);
Answer the question
In order to leave comments, you need to log in
I recently wrote a program in C # - and so it turned out that in the .NET 4.5 client profile there is nothing at all in JSON, than to look for libraries I wrote everything I need through String.format () - it's easier than dragging an additional third-party lib because of a couple of lines.
So in your case, too, probably there are no necessary libraries.
Well, it turned out to be much easier. Original code (Not correct code (Looked something like this)):
JsonReader jsonReader= JsonReader .Create(Queo);
ffgl = (Ffgl)jsonSerializer.Deserialize(jsonReader);
var jsoncon = JsonConvert.SerializeObject(Queo);
dtprof = (Ffgl)JsonConvert.DeserializeObject(jsoncon);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question