https://github.com/mpewsey/unitydatacontracttests
Data contract serialization collection type compatibility tests for Unity IL2CPP
https://github.com/mpewsey/unitydatacontracttests
data-contract serialization unity
Last synced: 14 days ago
JSON representation
Data contract serialization collection type compatibility tests for Unity IL2CPP
- Host: GitHub
- URL: https://github.com/mpewsey/unitydatacontracttests
- Owner: mpewsey
- License: mit
- Archived: true
- Created: 2022-10-30T13:46:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-31T17:57:14.000Z (over 2 years ago)
- Last Synced: 2025-03-03T18:48:41.168Z (3 months ago)
- Topics: data-contract, serialization, unity
- Language: C#
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Unity Data Contract Tests
## Results
| | Unity 2021.3.11f1 | Unity 2022.1.21f1 | | | |
|------------------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
| Collection Type | IL2CPP Minimal | IL2CPP Minimal | IL2CPP Low | IL2CPP Medium | IL2CPP High |
| | | | | | |
| Array With Object Types | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Array With Struct Types | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Array With Value Types | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Dictionary With Struct Types | :x: | :x: | :x: | :x: | :x: |
| Dictionary With Value Types | :x: | :x: | :x: | :x: | :x: |
| Enumerable With Object Types | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: |
| Enumerable With Struct Types | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: |
| Enumerable With Value Types | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: |
| List With Object Types | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| List With Struct Types | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| List WIth Value Types | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |