You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Line: 2, Col: 10, Idx: 10) - (Line: 2, Col: 10, Idx: 10): No node deserializer was able to deserialize the node into type Microsoft.FSharp.Collections.FSharpList`1[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], FSharp.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Stopped due to error
If that's ok, I can add support for it, following the same approach as #930 (probably by adding a new deserializer in DeserializerBuilder)
The text was updated successfully, but these errors were encountered:
While looking at #913, I noticed that there is currently no support for F# List.
In F# BCL, there is basically 3 main collections :
seq
(= C# IEnumerable)array
(= C# Array)list
which is an ordered immutable listgives the following error :
If that's ok, I can add support for it, following the same approach as #930 (probably by adding a new deserializer in
DeserializerBuilder
)The text was updated successfully, but these errors were encountered: