7 overrides of Write
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
275public override void Write(string format, object arg0)
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
588public override void Write(string format, object? arg0)
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
169public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
518public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
247public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
840public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0) { } 976public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0) => _out.Write(format, arg0);
27 references to Write
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
278_writer.Write(format, arg0);
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
123writer.Write(format: "{0}", arg0: null);
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
592_internalWriter.Write(format, arg0);
Microsoft.Cci.Extensions (1)
Writers\Syntax\OpenXmlSyntaxWriter.cs (1)
92writer.Write("<w:r><w:t>{0}</w:t></w:r>", indent);
Microsoft.ML.Core (7)
Environment\ConsoleEnvironment.cs (7)
137wr.Write("{0}: ", provider.ShortName); 212_out.Write("[{0}] ", ev.Index); 236_out.Write("[{0}] ", ev.Index); 265writer.Write("(00:{0:00.00})", elapsed.TotalSeconds); 279writer.Write("{0}", ev.ProgressEntry.Progress[i]); 281writer.Write("/{0}", ev.ProgressEntry.ProgressLim[i].Value); 282writer.Write(" {0}", ev.ProgressEntry.Header.UnitNames[i]);
Microsoft.ML.Data (1)
Transforms\InvertHashUtils.cs (1)
425writer.Write("{0}\t", pair.Key);
Microsoft.ML.FastTree (1)
FastTree.cs (1)
3188writer.Write("double treeOutput{0}=", i);
Microsoft.ML.PCA (2)
PcaTrainer.cs (2)
569writer.Write(" {0}", value.Value); 574writer.Write(" {0}", value);
Microsoft.ML.Predictor.Tests (1)
CompareBaselines.cs (1)
153log.Write("*** Infinite diffs: {0}, ", InfCount);
Microsoft.ML.Transforms (5)
Expression\Tokens.cs (1)
231wrt.Write(@"\u{0:X4}", (int)ch);
SvmLight\SvmLightSaver.cs (4)
144writer.Write("{0:R}", lab); 150writer.Write(" qid:{0}", groupId - 1); 157writer.Write(" cost:{0:R}", weight); 170writer.Write(" {0}:0", _zero ? 0 : 1);
System.Console (1)
System\Console.cs (1)
914Out.Write(format, arg0);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
172_writer.Write(format, arg0);
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
526base.Write(format, arg0);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
251writer.Write(format, arg0);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
976public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0) => _out.Write(format, arg0);
System.Private.Xml (1)
System\Xml\Xsl\IlGen\GenerateHelper.cs (1)
1649_writerDump.Write(", Label {0}", _symbols![arrLabels[i]]);