FsPickler icon indicating copy to clipboard operation
FsPickler copied to clipboard

A fast multi-format message serializer for .NET

Results 14 FsPickler issues
Sort by recently updated
recently updated
newest added

I tried to use this library to implement space separated values serializer but with no luck.

I'm trying to serialize a simple F# function that takes a double input and multiplies it by 2. The goal is to: - serialize this multiply by two function using...

Here's what I've tried: ```F# #r "nuget:FsPickler" open System.IO open System.Collections.Immutable open MBrace.FsPickler let mkPickler () let writer (w : WriteState) (ns : ImmutableList(seqPickler.Read r "value") Pickler.FromPrimitives(reader, writer) let resolver...

I am using a library built in .NET 9 and trying to unpickle pickle file which produced in .NET 7 library. And I use System.Runtime.Loader.AssemblyLoadContext.Default.LoadFromAssemblyPath to load the .NET 7...