You can use the F # concat from the System module, for example:
let a = [| "Line 1"; null; "Line 2"; null; null;|] let b = String.concat System.Environment.NewLine a
(you should not import the System namespace to avoid a name conflict between the F # String module and the .NET String class )
source share