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
- Host: GitHub
- URL: https://github.com/maxatwork/jsonxml
- Owner: maxatwork
- Created: 2013-04-25T15:02:37.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-29T10:06:17.000Z (about 13 years ago)
- Last Synced: 2025-01-08T07:42:39.756Z (over 1 year ago)
- Language: C#
- Size: 2.41 MB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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" ]
}
```