ExtraTopLevelOperators.eprintfn<'T>, fonction (F#)
Imprimer dans stderr à l'aide du format donné et ajouter un saut de ligne.
Espace de noms/Chemin du module : Microsoft.FSharp.Core.ExtraTopLevelOperators
Assembly : FSharp.Core (in FSharp.Core.dll)
// Signature:
eprintfn : TextWriterFormat<'T> -> 'T
// Usage:
eprintfn format
Paramètres
- format
Type : TextWriterFormat<'T>
Notes
Cette fonction se nomme PrintFormatLineToError dans les assemblys compilés.Si vous accédez à la fonction à partir d'un langage autre que F# ou par réflexion, utilisez ce nom.
Exemple
L'exemple de code suivant illustre l'utilisation de eprintfn.
let maxValue = 10
let function1 x =
if (x > maxValue) then
eprintfn "Error: the input %d exceeds the maximum value, %d." x maxValue
else
printfn "Success!"
function1 1
function1 11
Sortie
Plateformes
Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Informations de version
Versions de bibliothèque principale F#
Pris en charge dans : 2.0, 4.0