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 工作。