5 overrides of Write
mscorlib (1)
system\io\textwriter.cs (1)
762public override void Write(String format, Object arg0, Object arg1) {
System (1)
compmod\system\codedom\compiler\IndentTextWriter.cs (1)
261public override void Write(string format, object arg0, object arg1) {
System.Web (2)
UI\CssTextWriter.cs (1)
259public override void Write(string format, object arg0, object arg1) {
UI\HTMLTextWriter.cs (1)
466public override void Write(string format, object arg0, object arg1) {
System.Web.Mobile (1)
UI\MobileControls\Adapters\EmptyTextWriter.cs (1)
171public override void Write(String format, Object arg0, Object arg1)
7 references to Write
mscorlib (3)
system\console.cs (2)
2160Out.Write(format, arg0, arg1); 2205Out.Write(format, null, null); // faster than Out.Write(format, (Object)arg);
system\io\textwriter.cs (1)
763_out.Write(format, arg0, arg1);
System (1)
compmod\system\codedom\compiler\IndentTextWriter.cs (1)
263writer.Write(format, arg0, arg1);
System.Data.Services.Client (1)
System\Data\Services\Client\Util.cs (1)
574writer.Write(" {0}=\"{1}\"", reader.Name, reader.Value);
System.Web (2)
UI\CssTextWriter.cs (1)
260_writer.Write(format, arg0, arg1);
UI\HTMLTextWriter.cs (1)
470writer.Write(format, arg0, arg1);