Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

How can I call F# printfn directly from C# code? I see there's a

T PrintfModule.PrintFormat<T>(PrintfFormat<T, TextWriter, Unit,Unit> format)

For example, I have F# assembly that defines x:

type R = { r: R }
let rec x = { r = x }

In another C# assembly, how can I print x by calling code that is equivalent to printfn "%A" x with PrintfModule.PrintFormatLine?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
209 views
Welcome To Ask or Share your Answers For Others

1 Answer

A shorter version of AlexAtNet's anwser is:

PrintfModule
    .PrintFormatLine(
        new PrintfFormat<FSharpFunc<Program.R, Unit>, TextWriter, Unit, Unit, Program.R>("%A"))
    .Invoke(Program.x);

Although I don't understand why there's a need of casting (PrintfFormat<FSharpFunc<Program.R, Unit>, TextWriter, Unit, Unit>). If someone knows the reason please teach me.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...