12 references to PadRight
aspire (1)
Telemetry\InternalMicrosoftDetector.cs (1)
950
padded = padded.
PadRight
(padded.Length + ((4 - padded.Length % 4) % 4), '=');
Microsoft.Build (1)
Evaluation\Expander\WellKnownFunctions.cs (1)
322
returnVal = text.
PadRight
(totalWidth, paddingChar[0]);
Microsoft.DotNet.Build.Tasks.Installers (6)
src\ArWriter.cs (6)
27
Write(Encoding.ASCII.GetBytes(entry.Name.
PadRight
(16, ' ').Substring(0, 16)));
28
Write(Encoding.ASCII.GetBytes(entry.Timestamp.ToString().
PadRight
(12, ' ').Substring(0, 12)));
29
Write(Encoding.ASCII.GetBytes(entry.OwnerID.ToString().
PadRight
(6, ' ').Substring(0, 6)));
30
Write(Encoding.ASCII.GetBytes(entry.GroupID.ToString().
PadRight
(6, ' ').Substring(0, 6)));
31
Write(Encoding.ASCII.GetBytes(Convert.ToString(entry.Mode, 8).
PadRight
(8, ' ').Substring(0, 8)));
35
Write(Encoding.ASCII.GetBytes(length.ToString().
PadRight
(10, ' ').Substring(0, 10)));
Microsoft.ML.Data (1)
Evaluators\EvaluatorUtils.cs (1)
1723
return str.Substring(0, totalLength - 1).
PadRight
(totalLength, '.');
NuGet.CommandLine.XPlat (2)
Commands\PackageSearch\Table.cs (2)
89
PrintRow(logger, _columns.Select(c => "".
PadRight
(c.Width, '-')).ToList(), "");
98
PrintRow(logger, _columns.Select(c => "".
PadRight
(c.Width, '-')).ToList(), "");
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (1)
1162
public string PadRight(int totalWidth) =>
PadRight
(totalWidth, ' ');