StreamWriter.Null フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
バッキング ストアを持たない書き込み専用の StreamWriter
を提供します。
public: static initonly System::IO::StreamWriter ^ Null;
public static readonly System.IO.StreamWriter Null;
staticval mutable Null : System.IO.StreamWriter
Public Shared ReadOnly Null As StreamWriter
フィールド値
例
次の例では、 フィールドの使用方法を Null
示します。
if ( sw->Equals( StreamWriter::Null ) )
{
sw->WriteLine( "The store can be written to, but not read from." );
}
if(sw.Equals(StreamWriter.Null))
{
sw.WriteLine("The store can be written to, but not read from.");
}
If Sw.Equals(StreamWriter.Null) Then
Sw.WriteLine("The store can be written to, but not read from.")
End If
注釈
を使用して Null
、オペレーティング システム リソースを StreamWriter
消費しない に出力をリダイレクトします。
メソッドが StreamWriter.Write
で Null
呼び出されると、呼び出しは単に を返し、実際にはバッキング ストアにデータが書き込まれるわけではありません。
共通 I/O タスクの一覧は、 共通 I/O タスク を参照してください。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET