Skip to content

Commit 4fc5287

Browse files
committed
Use string.Empty
1 parent 2179e14 commit 4fc5287

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Core/Common/ExportFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public static string Csv(object[][] data, string title, ColumnInfo[] columnInfos
7575

7676
private static string CsvEncode(object value)
7777
{
78-
var s = "";
78+
var s = string.Empty;
7979
if (value is string)
8080
{
8181
s = value.ToString();

0 commit comments

Comments
 (0)