[ALL] String.Empty

This commit is contained in:
Matt Nadareski
2017-01-27 15:42:07 -08:00
parent 2647f74790
commit d1df5c2b60
39 changed files with 505 additions and 505 deletions

View File

@@ -93,8 +93,8 @@ namespace SabreTools
onlyNeeded = false;
// User inputs
string newdat ="",
outdat = "";
string newdat =String.Empty,
outdat = String.Empty;
List<string> inputs = new List<string>();
// Determine which switches are enabled (with values if necessary)
@@ -178,7 +178,7 @@ namespace SabreTools
outdat = args[i];
break;
default:
string temparg = args[i].Replace("\"", "").Replace("file://", "");
string temparg = args[i].Replace(""", String.Empty).Replace("file://", String.Empty);
if (temparg.StartsWith("-") && temparg.Contains("="))
{
@@ -186,7 +186,7 @@ namespace SabreTools
string[] split = temparg.Split('=');
if (split[1] == null)
{
split[1] = "";
split[1] = String.Empty;
}
switch (split[0])