-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.fs
33 lines (24 loc) · 914 Bytes
/
Program.fs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Learn more about F# at http://fsharp.net
// See the 'F# Tutorial' project for more help.
open FsSandbox
open System.IO
open ProtoBuf
open System
module Serialization =
let serialize person =
use ms = new System.IO.MemoryStream()
Serializer.SerializeWithLengthPrefix(ms, person, PrefixStyle.Fixed32)
ms.ToArray()
let deserialize<'T> data =
use ms = new System.IO.MemoryStream(buffer = data)
Serializer.DeserializeWithLengthPrefix<'T>(ms, PrefixStyle.Fixed32)
[<EntryPoint>]
let main argv =
let person:Person = {
Name = "FirstName"
LastName = "LastName"
Age = 10 }
let p = person |> Serialization.serialize |> Serialization.deserialize<PersonV2>
let pe = p |> Serialization.serialize |> Serialization.deserialize<Person>
printfn "%s %s %d" pe.Name pe.LastName pe.Age
0 // return an integer exit code