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
?