Freigeben über


ExtraTopLevelOperators.eprintf<'T>-Funktion (F#)

Druckt in stderr mit dem angegebenen Format.

Namespace/Modulpfad: Microsoft.FSharp.Core.ExtraTopLevelOperators

Assembly: FSharp.Core (in FSharp.Core.dll)

// Signature:
eprintf : TextWriterFormat<'T> -> 'T

// Usage:
eprintf format

Parameter

Hinweise

Der Name dieser Funktion in kompilierten Assemblys lautet PrintFormatToError. Verwenden Sie diesen Namen, wenn Sie in einer anderen .NET-Sprache als F# oder durch Reflektion auf die Funktion zugreifen.

Beispiel

Im folgenden Codebeispiel wird die Verwendung von eprintf veranschaulicht.

let maxValue = 10
let function1 x =
   if (x > maxValue) then
       eprintf "Error: the input %d exceeds the maximum value, %d." x maxValue
   else
       printfn "Success!"
function1 1
function1 11
// Issue a newline to stderr to trigger printing.
stderr.WriteLine()

Die Ausgabe lautet wie folgt.

      

Plattformen

Windows 7, Windows Vista SP2, Windows XP SP3, Windows XP x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2

Versionsinformationen

F#-Runtime

Unterstützt in: 2.0, 4.0

Silverlight

Unterstützt in: 3

Siehe auch

Weitere Ressourcen

Core.ExtraTopLevelOperators-Modul (F#)

Microsoft.FSharp.Core-Namespace (F#)

Änderungsprotokoll

Datum

Versionsgeschichte

Grund

Mai 2010

Codebeispiel hinzugefügt.

Informationsergänzung.