An open API service indexing awesome lists of open source software.

https://github.com/maxatwork/jsonxml

JsonXml - sequential conversion XML <--> JSON for .NET
https://github.com/maxatwork/jsonxml

Last synced: about 1 month ago
JSON representation

JsonXml - sequential conversion XML <--> JSON for .NET

Awesome Lists containing this project

README

          

#JsonXml

Sequential JSON <--> XML conversion for .NET

Provides
- JsonXmlReader -- implementation of XmlReader which reads JSON from provided JsonReader and converts it to XML
- XmlJsonReader -- implementation of JsonReader which reads XML from provided XmlReader and converts it to JSON

##Attributes

```xml

```

```json
{
"Foo" : {
"@bar": "baz"
}
}
```

##Arrays

```xml


foo
bar
baz

```

```json
{
"Items": [ "foo", "bar", "baz" ]
}
```