4 overrides of WriteLine
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
611
public 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)
423
public 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)
747
public override void
WriteLine
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2) { }
920
public override void
WriteLine
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2) => _out.WriteLine(format, arg0, arg1, arg2);
18 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)
122
writer.
WriteLine
(" Clause[{0}] = {1}{2}", i, this[i], i < this.Count - 1 ? "," : "");
Microsoft.ML.Core (1)
Environment\ConsoleEnvironment.cs (1)
257
writer.
WriteLine
("[{0}] '{1}' finished in {2}.", ev.Index, ev.Name, ev.EventTime - ev.StartTime);
Microsoft.ML.Data (6)
Commands\ShowSchemaCommand.cs (1)
142
itw.
WriteLine
("{0}: {1}{2}", name, type, slotType == null ? "" : " (T)");
Transforms\NormalizeColumnDbl.cs (2)
75
writer.
WriteLine
("{0}\t{1}\t{2}", i, offsets != null ? offsets[i] : 0, scales[i]);
80
writer.
WriteLine
("{0}\t{1}\t{2}", indices[ii], offsets != null ? offsets[ii] : 0,
Transforms\NormalizeColumnSng.cs (2)
75
writer.
WriteLine
("{0}\t{1}\t{2}", i, offsets != null ? offsets[i] : 0, scales[i]);
80
writer.
WriteLine
("{0}\t{1}\t{2}", indices[ii], offsets != null ? offsets[ii] : 0,
Transforms\ValueToKeyMappingTransformerImpl.cs (1)
1216
writer.
WriteLine
("# Number of terms of key '{0}' indexing '{1}' value = {2}",
Microsoft.ML.Maml (1)
MAML.cs (1)
248
writer.
WriteLine
("({0}) Unexpected exception: {1}, '{2}'", index, e.Message, e.GetType());
Microsoft.ML.Mkl.Components (2)
OlsLinearRegression.cs (2)
928
writer.
WriteLine
(format, "", "Bias", Bias);
934
writer.
WriteLine
(format, i, name.IsEmpty ? $"f{i}" : name.ToString(), coeffs[i]);
System.Console (1)
System\Console.cs (1)
837
Out.
WriteLine
(format, arg0, arg1, arg2);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
620
base.
WriteLine
(format, arg0, arg1, arg2);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
427
writer.
WriteLine
(format, arg0, arg1, arg2);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
920
public 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);
System.ServiceModel.Primitives (1)
System\IdentityModel\Tokens\SecurityKeyIdentifier.cs (1)
119
writer.
WriteLine
(" Clause[{0}] = {1}{2}", i, this[i], i < Count - 1 ? "," : "");