6 overrides of Write
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
287public override void Write(string format, object arg0, object arg1)
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
165public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
527public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
247public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
720public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1) { } 854public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1) => _out.Write(format, arg0, arg1);
13 references to Write
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
290_writer.Write(format, arg0, arg1);
Microsoft.ML.Core (2)
Environment\ConsoleEnvironment.cs (2)
267writer.Write("({0:00}:{1:00.0})", elapsed.Minutes, elapsed.TotalSeconds - 60 * elapsed.Minutes); 291writer.Write("\t{0}: {1}", ev.ProgressEntry.Header.MetricNames[i], ev.ProgressEntry.Metrics[i].Value);
Microsoft.ML.Data (1)
Transforms\ValueToKeyMappingTransformerImpl.cs (1)
1226writer.Write("{0}\t{1}", pair.Key, sb.ToString());
Microsoft.ML.FastTree (1)
FastTree.cs (1)
3221writer.Write("(({0} > {1}) ? ", name, FloatUtils.ToRoundTripString(tree.RawThreshold(node)));
Microsoft.ML.Transforms (1)
SvmLight\SvmLightSaver.cs (1)
164writer.Write(" {0}:{1}", _zero ? pair.Key : (pair.Key + 1), pair.Value);
System.Console (2)
System\Console.cs (2)
869Out.Write(format, arg0, arg1); 882Out.Write(format, null, null); // faster than Out.Write(format, (Object)arg);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
168_writer.Write(format, arg0, arg1);
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
536base.Write(format, arg0, arg1);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
251writer.Write(format, arg0, arg1);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
854public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1) => _out.Write(format, arg0, arg1);
System.Private.Xml (1)
System\Xml\Xsl\IlGen\GenerateHelper.cs (1)
1646_writerDump!.Write(" {0, -10} (Label {1}", opcode.Name, arrLabels.Length != 0 ? _symbols![arrLabels[0]]!.ToString() : "");