fix: Check if any & all characters in a string is a digit instead of just all

This commit is contained in:
Austin Noska
2020-07-28 17:31:41 -04:00
parent 62f54f1213
commit 7cc8359284

View File

@@ -205,7 +205,7 @@ namespace ICD.Common.Utils.Extensions
if (extends == null)
throw new ArgumentNullException("extends");
return extends.All(char.IsDigit);
return extends.AnyAndAll(char.IsDigit);
}
/// <summary>