Browse Source

string.Empty

Brandon Thetford 1 year ago
parent
commit
85698529dc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Terminal.Gui/ConsoleDrivers/EscSeqUtils/EscSeqUtils.cs

+ 1 - 1
Terminal.Gui/ConsoleDrivers/EscSeqUtils/EscSeqUtils.cs

@@ -435,7 +435,7 @@ public static class EscSeqUtils
         int nSep = kChar.Count (static x => x == ';') + 1;
         var values = new string [nSep];
         var valueIdx = 0;
-        var terminating = "";
+        var terminating = string.Empty;
 
         for (var i = 2; i < kChar.Length; i++)
         {