7 overrides of WriteLine
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
457
public override void
WriteLine
(string format, params object[] arg)
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
746
public override void
WriteLine
(string format, params object?[] arg)
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
359
public override void
WriteLine
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params object?[] arg)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
624
public override void
WriteLine
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params object?[] arg)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
431
public override void
WriteLine
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params object?[] arg)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
748
public override void
WriteLine
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params object?[] arg) { }
923
public override void
WriteLine
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object?[] arg) => _out.WriteLine(format, arg);
34 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 (8)
BackEnd\Components\BuildRequestEngine\BuildRequestEngine.cs (1)
1450
file.
WriteLine
("{0}({1})-{2}: {3}", Thread.CurrentThread.Name, Environment.CurrentManagedThreadId, DateTime.UtcNow.Ticks, message);
BackEnd\Components\Scheduler\Scheduler.cs (4)
2570
file.
WriteLine
(format, stuff);
2599
file.
WriteLine
(
2716
file.
WriteLine
("Config {0} Node {1} TV: {2} File {3}", config, _schedulingData.GetAssignedNodeForRequestConfiguration(config), _configCache[config].ToolsVersion, _configCache[config].ProjectFullPath);
2804
file.
WriteLine
(
BackEnd\Node\OutOfProcServerNode.cs (2)
606
_internalWriter.
WriteLine
(format, arg);
750
_internalWriter.
WriteLine
(format, arg);
CommunicationsUtilities.cs (1)
848
file.
WriteLine
("{0} (TID {1}) {2,15} +{3,10}ms: {4}", Thread.CurrentThread.Name, Thread.CurrentThread.ManagedThreadId, now, millisecondsSinceLastLog, message);
Microsoft.ML.Mkl.Components (2)
OlsLinearRegression.cs (2)
913
writer.
WriteLine
(format, "", "Bias", Bias, _standardErrors[0], _tValues[0], _pValues[0]);
919
writer.
WriteLine
(format, i, name.IsEmpty ? $"f{i}" : name.ToString(),
Microsoft.ML.Predictor.Tests (1)
CompareBaselines.cs (1)
159
log.
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)
506
writer.
WriteLine
("(Bias)\t{0,-10:G7}\t{1,-10:G7}\t{2,-10:G7}\t{3}",
516
writer.
WriteLine
("{0,-15}\t{1,-10:G7}\t{2,-10:G7}\t{3,-10:G7}\t{4}",
Microsoft.ML.TestFramework (1)
BaseTestBaseline.cs (1)
265
LogWriter.
WriteLine
(fmt, args);
MSBuildTaskHost (1)
CommunicationsUtilities.cs (1)
848
file.
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)
846
Out.
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)
633
base.
WriteLine
(format, arg);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
435
writer.
WriteLine
(format, arg);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
923
public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object?[] arg) => _out.
WriteLine
(format, arg);
System.Private.Xml (2)
System\Xml\Xsl\IlGen\GenerateHelper.cs (2)
832
_writerDump!.
WriteLine
(" {0, -10} {1} {2}({3})", new object?[] { opcode.Name, retType, meth.Name, strBldr.ToString() });
1523
_writerDump!.
WriteLine
("//[{0},{1} -- {2},{3}]", sourceInfo.Start.Line, sourceInfo.Start.Pos, sourceInfo.End.Line, sourceInfo.End.Pos);
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}",