Does Windows API have JSON that can be called from C?

Is there a native JSON implementation on Windows that I can call from C? If not, what about .NET or C #? Or what if some library or implementation uses people when they want to use JSON in a Windows application?

+4
source share
2 answers

Yes, there is a built-in Windows JSON parser: http://msdn.microsoft.com/en-us/library/system.web.script.serialization.javascriptserializer.aspx

It can be called from the native language using .NET ( COM Callable Wrapper ) communication tools, which may be more useful to you than a truly native library, as the first answer suggests.

+3
source

The JSON page has a long list of such things . Make your choice.

+2
source

Source: https://habr.com/ru/post/1345418/


All Articles