2

I have a json like this

{"1":"#ff0051","2":"#d000ff","3":"#2200ff","4":"#00ff59"}

How can I read these values since they don't have a property name? It is a bit difficult to think of a way.

1

1 Answer 1

2

Use JSON.Net

var s = "{\"1\":\"#ff0051\",\"2\":\"#d000ff\",\"3\":\"#2200ff\",\"4\":\"#00ff59\"}";
var o = JObject.Parse(s);

Then you can read the property value

Console.WriteLine(o["1"]);

Please note that you also need to install Json.NET Nuget Package.

Sign up to request clarification or add additional context in comments.

1 Comment

Thank you. this is exactly what i was looking for.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.