StreamWriter.Null Alan

Tanım

StreamWriter'a yazılabilen ancak buradan okunmayan bir yedekleme deposu sağlar.

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 

Alan Değeri

Örnekler

Aşağıdaki örnekte alanın kullanımı gösterilmektedir 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

Açıklamalar

Çıkışı herhangi bir işletim sistemi kaynağı kullanmayacak bir StreamWriter öğesine yeniden yönlendirmek için kullanınNull.

StreamWriter.Write yöntemleri üzerinde Nullçağrıldığında, çağrı basitçe döndürür ve hiçbir veri aslında herhangi bir yedekleme deposuna yazılmamıştır.

Yaygın G/Ç görevlerinin listesi için bkz. Ortak G/Ç Görevleri.

Şunlara uygulanır

Ayrıca bkz.