Freigeben über


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

Druckt in stderr mit dem angegebenen Format und fügt einen Zeilenvorschub hinzu.

Namespace/Modulpfad: Microsoft.FSharp.Core.ExtraTopLevelOperators

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

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

// Usage:
eprintfn format

Parameter

Hinweise

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

Beispiel

Das folgende Codebeispiel veranschaulicht die Verwendung von 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

Output

      

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.