7 overrides of Write
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
287public override void Write(string format, object arg0, object arg1)
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
586public 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);
44 references to Write
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
290_writer.Write(format, arg0, arg1);
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
590_internalWriter.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() : "");
VisualBasicSyntaxGenerator (30)
GreenNodes\GreenNodeFactoryWriter.vb (4)
331_writer.Write("{0}.{1}", NodeKindType(), Ident(nodeKind.Name)) 356_writer.Write(", {0}.Node)", ChildParamName(child, factoryFunctionName), ChildConstructorTypeRef(child, True)) 370_writer.Write("{0} As {1}", FieldParamName(field, conflictName), FieldTypeRef(field)) 375_writer.Write("{0} As {1}", ChildParamName(child, conflictName), ChildFactoryTypeRef(node, child, True, True))
GreenNodes\GreenNodeWriter.vb (3)
445_writer.Write(", {0}, {1}", precedingTriviaParam, followingTriviaParam) 464_writer.Write("{0} As {1}", FieldParamName(field, conflictName), FieldTypeRef(field)) 469_writer.Write("{0} As {1}", ChildParamName(child, conflictName), ChildConstructorTypeRef(child, isGreen))
RedNodes\RedNodeFactoryWriter.vb (9)
237_writer.Write("{0}.{1}", NodeKindType(), Ident(nodeKind.Name)) 278_writer.Write(", DirectCast({0}.Node, {1})", ChildParamName(child, factoryFunctionName), ChildConstructorTypeRef(child, True)) 356_writer.Write(" Public {0}Shared Function {1}(", 682_writer.Write(" Public {0}Shared Function {1}(", 777_writer.Write("SyntaxFactory.SeparatedList(Of {0})().AddRange({1})", BaseTypeReference(child), ChildParamName(child, factoryFunctionName)) 799_writer.Write("{0} As {1}", FieldParamName(field, conflictName), FieldTypeRef(field)) 821_writer.Write("ParamArray {0} As {1}()", ChildParamName(child, conflictName), BaseTypeReference(child)) 823_writer.Write("{0} As {1}", ChildParamName(child, conflictName), type) 826_writer.Write("Optional {0} As {1} = Nothing", ChildParamName(child, conflictName), type)
RedNodes\RedNodeWriter.vb (8)
403_writer.Write(", DirectCast({0}.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.{1})", ChildParamName(child), BaseTypeReference(child)) 429_writer.Write("{0} As {1}", FieldParamName(field, conflictName), FieldTypeRef(field)) 434_writer.Write("{0} As {1}", ChildParamName(child, conflictName), ChildConstructorTypeRef(child)) 439_writer.Write("{0} As {1}", ChildParamName(child, conflictName), ChildFactoryTypeRef(node, child, False, False)) 755_writer.Write("{0} <> Me.{1}", ChildParamName(child), ChildPropertyName(child)) 757_writer.Write("{0} <> Me.{1}", ChildParamName(child), ChildPropertyName(child)) 759_writer.Write("{0} IsNot Me.{1}", ChildParamName(child), ChildPropertyName(child)) 1015_writer.Write(", {0}", ChildNewVarName(child), ChildFieldTypeRef(child))
Tests\TestWriter.vb (2)
486_writer.Write("Test{0}{1}", funcNamePart, FactoryName(nodeKind)) 538_writer.Write("Test{0}{1}Rewriter", funcNamePart, FactoryName(nodeKind))
Util\WriteDumper.vb (4)
124_writer.Write(" New NodeInfo.FieldInfo(""{0}"", GetType({1}), node.{0})", FieldPropertyName(field), FieldTypeRef(field)) 137_writer.Write(" New NodeInfo.ChildInfo(""{0}"", NodeInfo.ChildKind.SeparatedNodeList, GetType({1}), node.{0}, node.{0}.Separators)", ChildPropertyName(child), BaseTypeReference(child)) 139_writer.Write(" New NodeInfo.ChildInfo(""{0}"", NodeInfo.ChildKind.NodeList, GetType({1}), node.{0}, Nothing)", ChildPropertyName(child), BaseTypeReference(child)) 142_writer.Write(" New NodeInfo.ChildInfo(""{0}"", NodeInfo.ChildKind.SingleNode, GetType({1}), node.{0}, Nothing)", ChildPropertyName(child), BaseTypeReference(child))