6 overrides of Write
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
287
public 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)
165
public override void
Write
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
527
public override void
Write
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
247
public override void
Write
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
720
public override void
Write
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1) { }
854
public 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)
267
writer.
Write
("({0:00}:{1:00.0})", elapsed.Minutes, elapsed.TotalSeconds - 60 * elapsed.Minutes);
291
writer.
Write
("\t{0}: {1}", ev.ProgressEntry.Header.MetricNames[i], ev.ProgressEntry.Metrics[i].Value);
Microsoft.ML.Data (1)
Transforms\ValueToKeyMappingTransformerImpl.cs (1)
1226
writer.
Write
("{0}\t{1}", pair.Key, sb.ToString());
Microsoft.ML.FastTree (1)
FastTree.cs (1)
3221
writer.
Write
("(({0} > {1}) ? ", name, FloatUtils.ToRoundTripString(tree.RawThreshold(node)));
Microsoft.ML.Transforms (1)
SvmLight\SvmLightSaver.cs (1)
164
writer.
Write
(" {0}:{1}", _zero ? pair.Key : (pair.Key + 1), pair.Value);
System.Console (2)
System\Console.cs (2)
869
Out.
Write
(format, arg0, arg1);
882
Out.
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)
536
base.
Write
(format, arg0, arg1);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
251
writer.
Write
(format, arg0, arg1);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
854
public 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() : "");