次の方法で共有


ExtraTopLevelOperators.eprintfn<'T> 関数 (F#)

更新 : 2010 年 5 月

指定された書式を使用して stderr に出力し、改行を追加します。

名前空間/モジュール パス: Microsoft.FSharp.Core.ExtraTopLevelOperators

アセンブリ: FSharp.Core (FSharp.Core.dll)

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

// Usage:
eprintfn format

パラメーター

解説

この関数は、コンパイルされたアセンブリでは PrintFormatLineToError という名前です。 F# 以外の言語から、またはリフレクションを使用してこの関数にアクセスする場合は、この名前を使用します。

使用例

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

出力

      

プラットフォーム

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

バージョン情報

F# ランタイム

サポート対象: 2.0、4.0

Silverlight

サポート: 3

参照

その他の技術情報

Core.ExtraTopLevelOperators モジュール (F#)

Microsoft.FSharp.Core 名前空間 (F#)

履歴の変更

日付

履歴

理由

2010 年 5 月

コード例を追加。

情報の拡充