5 overrides of WriteLine
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
738public override void WriteLine(string format, object? arg0, object? arg1, object? arg2)
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
611public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
423public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
747public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2) { } 920public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2) => _out.WriteLine(format, arg0, arg1, arg2);
35 references to WriteLine
CSharpSyntaxGenerator (1)
SignatureWriter.cs (1)
72_writer.WriteLine(" public abstract {0}{1} {2} {{ get; }}", "", field.Type, field.Name);
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\SecurityKeyIdentifier.cs (1)
122writer.WriteLine(" Clause[{0}] = {1}{2}", i, this[i], i < this.Count - 1 ? "," : "");
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
742_internalWriter.WriteLine(format, arg0, arg1, arg2);
Microsoft.ML.Core (1)
Environment\ConsoleEnvironment.cs (1)
257writer.WriteLine("[{0}] '{1}' finished in {2}.", ev.Index, ev.Name, ev.EventTime - ev.StartTime);
Microsoft.ML.Data (6)
Commands\ShowSchemaCommand.cs (1)
142itw.WriteLine("{0}: {1}{2}", name, type, slotType == null ? "" : " (T)");
Transforms\NormalizeColumnDbl.cs (2)
75writer.WriteLine("{0}\t{1}\t{2}", i, offsets != null ? offsets[i] : 0, scales[i]); 80writer.WriteLine("{0}\t{1}\t{2}", indices[ii], offsets != null ? offsets[ii] : 0,
Transforms\NormalizeColumnSng.cs (2)
75writer.WriteLine("{0}\t{1}\t{2}", i, offsets != null ? offsets[i] : 0, scales[i]); 80writer.WriteLine("{0}\t{1}\t{2}", indices[ii], offsets != null ? offsets[ii] : 0,
Transforms\ValueToKeyMappingTransformerImpl.cs (1)
1216writer.WriteLine("# Number of terms of key '{0}' indexing '{1}' value = {2}",
Microsoft.ML.Maml (1)
MAML.cs (1)
248writer.WriteLine("({0}) Unexpected exception: {1}, '{2}'", index, e.Message, e.GetType());
Microsoft.ML.Mkl.Components (2)
OlsLinearRegression.cs (2)
928writer.WriteLine(format, "", "Bias", Bias); 934writer.WriteLine(format, i, name.IsEmpty ? $"f{i}" : name.ToString(), coeffs[i]);
System.Console (1)
System\Console.cs (1)
837Out.WriteLine(format, arg0, arg1, arg2);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
620base.WriteLine(format, arg0, arg1, arg2);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
427writer.WriteLine(format, arg0, arg1, arg2);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
920public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2) => _out.WriteLine(format, arg0, arg1, arg2);
System.Private.Xml (1)
System\Xml\Xsl\IlGen\GenerateHelper.cs (1)
1661_writerDump!.WriteLine(" {0, -10} {1} ({2})", opcode.Name, _symbols![locBldr], locBldr.LocalType.Name);
VisualBasicSyntaxGenerator (17)
GreenNodes\GreenNodeWriter.vb (5)
405_writer.WriteLine("{0} Me.{1} = {2}", indent, ChildVarName(child), ChildParamName(child)) 496_writer.WriteLine(" Friend {2}ReadOnly Property {0} As {1}", FieldPropertyName(field), FieldTypeRef(field), GetModifiers(field.ContainingStructure, isOverride, field.Name)) 511_writer.WriteLine(" Friend {2}ReadOnly Property {0} As {1}", ChildPropertyName(child), ChildPropertyTypeRef(node, child, True), GetModifiers(child.ContainingStructure, False, child.Name)) 517_writer.WriteLine(" Return new {0}(New Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of {1})(Me.{2}))", ChildPropertyTypeRef(node, child, True), BaseTypeReference(child), ChildVarName(child)) 664_writer.WriteLine(" Public Overrides Function {0}(ByVal node As {1}) As {2}",
RedNodes\RedNodeWriter.vb (11)
214_writer.WriteLine(" Public Shadows Function Add{0}(ParamArray items As {1}()) As {2}", child.Name, itemType, nodeStructure.Name) 217_writer.WriteLine(" Friend MustOverride Function Add{0}Core(ParamArray items As {1}()) As {2}", child.Name, itemType, nodeStructure.Name) 221_writer.WriteLine(" Public Shadows Function Add{0}(ParamArray items As {1}()) As {2}", child.Name, itemType, nodeStructure.Name) 229_writer.WriteLine(" Friend Overrides Function Add{0}Core(ParamArray items As {1}()) As {2}", child.Name, itemType, nodeStructure.ParentStructure.Name) 468_writer.WriteLine(" Public {2}ReadOnly Property {0} As {1}", FieldPropertyName(field), FieldTypeRef(field), GetModifiers(field.ContainingStructure, False, field.Name)) 492_writer.WriteLine(" Friend {0}Function Get{1}Core() As {2}", GetModifiers(child.ContainingStructure, isOverride, child.Name), child.Name, ChildPropertyTypeRef(nodeStructure, child, denyOverride:=True)) 499_writer.WriteLine(" Public {0}ReadOnly Property {1} As {2}", If(isOverride, "Shadows ", ""), ChildPropertyName(child), ChildPropertyTypeRef(nodeStructure, child)) 506_writer.WriteLine(" Friend {0}Function Get{1}Core() As {2}", GetModifiers(child.ContainingStructure, isOverride, child.Name), child.Name, ChildPropertyTypeRef(nodeStructure, child, denyOverride:=True)) 513_writer.WriteLine(" Public {0}ReadOnly Property {1} As {2}", GetModifiers(child.ContainingStructure, isOverride, child.Name), ChildPropertyName(child), ChildPropertyTypeRef(nodeStructure, child)) 563_writer.WriteLine($" {extraIndent}Return DirectCast(GetRed({{0}}, {{1}}), {{2}})", ChildVarName(child), childIndex, type) 663_writer.WriteLine(" Public {2}ReadOnly Property {0} As {1}", ChildPropertyName(child), ChildPropertyTypeRef(node, child), GetModifiers(child.ContainingStructure, isOverride, child.Name))
Util\WriteCsvNames.vb (1)
37_writer.WriteLine("{0},{1},{2}", val1, val2, val3)