5 overrides of WriteLine
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
371public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params ReadOnlySpan<object?> arg)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
642public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params ReadOnlySpan<object?> arg)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
439public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params ReadOnlySpan<object?> arg)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
749public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params ReadOnlySpan<object?> arg) { } 926public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params ReadOnlySpan<object?> arg) => _out.WriteLine(format, arg);
5 references to WriteLine
System.Console (1)
System\Console.cs (1)
857Out.WriteLine(format, arg);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
374_writer.WriteLine(format, arg);
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
650base.WriteLine(format, arg);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
443writer.WriteLine(format, arg);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
926public override void WriteLine([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, params ReadOnlySpan<object?> arg) => _out.WriteLine(format, arg);