Last active
June 21, 2021 13:35
-
-
Save felixprojekt/bb1b369f29ddac9d64b771b5253f2b0e to your computer and use it in GitHub Desktop.
flatc-cheatsheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Generate C# classes from schemas | |
flatc -n *.fbs | |
// JSON to binary | |
flatc --binary schema.fbs source.json | |
// binary to JSON | |
flatc --raw-binary -t schema.fbs -- source.bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment