python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
JSON Converter changing case of values in netcoreapp3.1 web api
I have an enum extension that allows for enums to be transformed into their [Description] value, as in:
private enum WithDescription
{
[Description("Nothing")] None = 0,
...

Vic F
Votes: 0
Answers: 0
Golang. Map to JSON, but preserve the key order
I've a map object and when it's serialized using json.Marshal(myMapObjct) the Golang sorts the keys in alphabetic order, which is causing issues on how the data is being processed. It's important to p...

ZARKONES
Votes: 0
Answers: 1