TeamSirenix / odin-serializer

Fast, robust, powerful and extendible .NET serializer built for Unity
http://www.odininspector.com
Apache License 2.0
1.66k stars 190 forks source link

One example is wrong in README #43

Closed mikkomcmenamin closed 3 months ago

mikkomcmenamin commented 3 years ago

File.WriteAllBytes(bytes, filePath);

should be

File.WriteAllBytes(filePath, bytes);

thought I'd mention this :)