Core/Misc: Misc fixs

This commit is contained in:
hondacrx
2018-05-22 11:16:19 -04:00
parent dbd62e5c6f
commit a91973b1ff
2 changed files with 23 additions and 20 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ namespace Framework.Collections
return _str == null || _str.Length == 0;
}
public int Length => _str.Length;
public int Length => _str != null ? _str.Length : 0;
string[] _str;
}