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