System.IO.TextWriter.TextWriter.Write C# (CSharp) Méthode

Write() public méthode

public Write ( string format, object arg0, object arg1, object arg2 ) : void
format string
arg0 object
arg1 object
arg2 object
Résultat void
                public virtual void Write (string format, object arg0, object arg1, object arg2 )
		{
			Write (String.Format (format, arg0, arg1, arg2));
		}
                

Same methods

TextWriter.TextWriter::Write ( bool value ) : void
TextWriter.TextWriter::Write ( char value ) : void
TextWriter.TextWriter::Write ( char buffer, int index, int count ) : void
TextWriter.TextWriter::Write ( decimal value ) : void
TextWriter.TextWriter::Write ( double value ) : void
TextWriter.TextWriter::Write ( float value ) : void
TextWriter.TextWriter::Write ( int value ) : void
TextWriter.TextWriter::Write ( long value ) : void
TextWriter.TextWriter::Write ( object value ) : void
TextWriter.TextWriter::Write ( string value ) : void
TextWriter.TextWriter::Write ( string format, object arg0 ) : void
TextWriter.TextWriter::Write ( string format, object arg0, object arg1 ) : void
TextWriter.TextWriter::Write ( uint value ) : void
TextWriter.TextWriter::Write ( ulong value ) : void