4 writes to Value
NuGet.CommandLine.XPlat (4)
Utility\FormattedCell.cs (1)
20
Value
= value ?? string.Empty;
Utility\TableParser.cs (3)
59
formattedDataCell.
Value
= (colIndex == 0 ? "> " : "") + formattedDataCell.Value?.ToString(CultureInfo.CurrentCulture) ?? string.Empty;
84
formattedDataCell.
Value
= (colIndex == 0 ? "> " : "") + formattedDataCell.Value?.ToString(CultureInfo.CurrentCulture) ?? string.Empty;
132
dataCell.
Value
= " " + dataCell.Value?.PadRight(maxColumnsWidth[colIndex]) ?? string.Empty;
9 references to Value
NuGet.CommandLine.XPlat (9)
Utility\FormattedCell.cs (3)
24
public bool Equals(FormattedCell other) =>
Value
== other?.
Value
&& ForegroundColor == other?.ForegroundColor;
32
combiner.AddObject(StringComparer.Ordinal.GetHashCode(
Value
));
Utility\ProjectPackagesPrintUtility.cs (1)
166
Console.Write(formattedCell.
Value
);
Utility\TableParser.cs (5)
59
formattedDataCell.Value = (colIndex == 0 ? "> " : "") + formattedDataCell.
Value
?.ToString(CultureInfo.CurrentCulture) ?? string.Empty;
84
formattedDataCell.Value = (colIndex == 0 ? "> " : "") + formattedDataCell.
Value
?.ToString(CultureInfo.CurrentCulture) ?? string.Empty;
132
dataCell.Value = " " + dataCell.
Value
?.PadRight(maxColumnsWidth[colIndex]) ?? string.Empty;
157
if ((formattedDataCell.
Value
?.Length ?? 0) > maxColumnsWidth[colIndex])
159
maxColumnsWidth[colIndex] = formattedDataCell.
Value
.Length;