Core/Misc: Misc Fixes/Cleanups

This commit is contained in:
hondacrx
2018-02-13 10:39:33 -05:00
parent 88d5d3d322
commit 5fd136f704
3 changed files with 14 additions and 18 deletions
+1 -2
View File
@@ -27,7 +27,7 @@ namespace Framework.Collections
_str = new string[size];
for (var i = 0; i < size; ++i)
_str[i] = "";
_str[i] = string.Empty;
}
public StringArray(string str, params string[] separator)
@@ -54,6 +54,5 @@ namespace Framework.Collections
public int Length { get { return _str.Length; } }
string[] _str;
}
}