https://github.com/moedevelops/moedevelops.xmlfilelib
A wrapper around the XmlSerializer
https://github.com/moedevelops/moedevelops.xmlfilelib
Last synced: 10 months ago
JSON representation
A wrapper around the XmlSerializer
- Host: GitHub
- URL: https://github.com/moedevelops/moedevelops.xmlfilelib
- Owner: MoeDevelops
- License: mit
- Created: 2024-04-19T10:46:52.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-22T14:12:53.000Z (about 2 years ago)
- Last Synced: 2025-03-14T23:37:52.288Z (over 1 year ago)
- Language: C#
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# XmlFile
A wrapper around XmlSerializer
## Usage
Can be used either with an instance or statically
```cs
XmlFile>.Save("List.xml", myList);
var xmlFile = new XmlFile>("List.xml");
xmlFile.Save(myList);
```