hadashiA / VYaml

The extra fast, low memory footprint YAML library for C#, focued on .NET and Unity.
MIT License
305 stars 18 forks source link

Uri型が読み込めない #19

Closed Freeesia closed 1 year ago

Freeesia commented 1 year ago

組み込みのUriFormatterの以下の部分でReadOnlySpan<byte>ToString()で文字列化しているため、読み込んだUri文字列ではなく型名が文字列になり、不正なUriとして読み込まれます。

https://github.com/hadashiA/VYaml/blob/master/VYaml.Core/Serialization/Formatters/UriFormatter.cs#L20

手元ではデシリアライズするプロパティをUri型ではなくstring型にして回避してます。

hadashiA commented 1 year ago

@Freeesia #24 で修正しました。ご報告ありがとうございます!

Freeesia commented 1 year ago

@hadashiA 対応ありがとうございます。リリースされたら試してみます。