Since printfn "%A" uses reflection, it displays the results in the same way as values โโautomatically printed by F # Interactive. %s , on the other hand, is for strings only, and it displays the contents of strings.
The general case of "%s" is "%O" when using ToString methods. The %A specifier is slow, but useful for structure types and types without overridden ToString methods.
source share