7 overrides of WriteLine
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
457public override void WriteLine(string format, params object[] arg)
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
746public override void WriteLine(string format, params object?[] arg)
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
359public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params object?[] arg)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
624public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params object?[] arg)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
431public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params object?[] arg)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
748public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params object?[] arg) { } 923public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object?[] arg) => _out.WriteLine(format, arg);
26 references to WriteLine
CSharpSyntaxGenerator (2)
SignatureWriter.cs (2)
91_writer.WriteLine(" public {0}{1}{2} {3} {{ get; }}", "", "", field.Type, field.Name); 97_writer.WriteLine(" public {0}{1}{2} {3} {{ get; }}", "", "", field.Type, field.Name);
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
460_writer.WriteLine(format, arg);
Microsoft.Build (2)
BackEnd\Node\OutOfProcServerNode.cs (2)
606_internalWriter.WriteLine(format, arg); 750_internalWriter.WriteLine(format, arg);
Microsoft.ML.Mkl.Components (2)
OlsLinearRegression.cs (2)
913writer.WriteLine(format, "", "Bias", Bias, _standardErrors[0], _tValues[0], _pValues[0]); 919writer.WriteLine(format, i, name.IsEmpty ? $"f{i}" : name.ToString(),
Microsoft.ML.Predictor.Tests (1)
CompareBaselines.cs (1)
159log.WriteLine("Diffs:{0,6}, Ave: {1:F20}, Max: {2:F20} at line {3,5} col {4,3}, File: {5}",
Microsoft.ML.StandardTrainers (2)
Standard\ModelStatistics.cs (2)
506writer.WriteLine("(Bias)\t{0,-10:G7}\t{1,-10:G7}\t{2,-10:G7}\t{3}", 516writer.WriteLine("{0,-15}\t{1,-10:G7}\t{2,-10:G7}\t{3,-10:G7}\t{4}",
MSBuildTaskHost (1)
CommunicationsUtilities.cs (1)
982file.WriteLine("{0} (TID {1}) {2,15} +{3,10}ms: {4}", Thread.CurrentThread.Name, Thread.CurrentThread.ManagedThreadId, now, millisecondsSinceLastLog, message);
System.Console (1)
System\Console.cs (1)
846Out.WriteLine(format, arg);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
362_writer.WriteLine(format, arg);
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
633base.WriteLine(format, arg);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
435writer.WriteLine(format, arg);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
923public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object?[] arg) => _out.WriteLine(format, arg);
System.Private.Xml (1)
System\Xml\Xsl\IlGen\GenerateHelper.cs (1)
832_writerDump!.WriteLine(" {0, -10} {1} {2}({3})", new object?[] { opcode.Name, retType, meth.Name, strBldr.ToString() });
VisualBasicSyntaxGenerator (9)
GreenNodes\GreenNodeWriter.vb (2)
541_writer.WriteLine(" Friend {2}Function {0}({3} as {4}) As {1}", ChildWithFunctionName(withChild), StructureTypeName(withChild.ContainingStructure), GetModifiers(withChild.ContainingStructure, isOverride, withChild.Name), Ident(UpperFirstCharacter(withChild.Name)), ChildConstructorTypeRef(withChild)) 567_writer.WriteLine(" Friend {2} Function {0}({3} as {4}) As {1}", ChildWithFunctionName(withChild), StructureTypeName(withChild.ContainingStructure), "MustOverride", Ident(UpperFirstCharacter(withChild.Name)), ChildConstructorTypeRef(withChild))
RedNodes\RedNodeWriter.vb (7)
277_writer.WriteLine(" Public Shadows Function Add{0}{1}(ParamArray items As {2}()) As {3}", child.Name, nestedList.Name, itemType, nodeStructure.Name) 280_writer.WriteLine(" Friend MustOverride Function Add{0}{1}Core(ParamArray items As {2}()) As {3}", child.Name, nestedList.Name, itemType, nodeStructure.Name) 285_writer.WriteLine(" Public Shadows Function Add{0}{1}(ParamArray items As {2}()) As {3}", child.Name, nestedList.Name, itemType, nodeStructure.Name) 294_writer.WriteLine(" Friend Overrides Function Add{0}{1}Core(ParamArray items As {2}()) As {3}", child.Name, nestedList.Name, itemType, nodeStructure.ParentStructure.Name) 539_writer.WriteLine($" {extraIndent}return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.{{0}}).{{1}}, {{2}}, {{3}})", StructureTypeName(nodeStructure), ChildVarName(child), Me.GetChildPosition(childIndex), Me.GetChildIndex(childIndex)) 619_writer.WriteLine(" Public Shadows Function {0}({1} as {2}) As {3}", ChildWithFunctionName(withChild), ChildParamName(withChild), ChildPropertyTypeRef(nodeStructure, withChild), StructureTypeName(nodeStructure)) 924_writer.WriteLine(" Public Overridable {2} {0}(ByVal node As {1}){3}",