(#27) Add "count must be >= 0" message

This commit is contained in:
Oliver Booth 2021-07-19 11:35:23 +01:00
parent 55dc20b79d
commit 14b43adf82
No known key found for this signature in database
GPG Key ID: A4AC17007530E9B4
2 changed files with 12 additions and 0 deletions

View File

@ -60,6 +60,15 @@ namespace X10D {
}
}
/// <summary>
/// Looks up a localized string similar to count must be greater than or equal to 0..
/// </summary>
internal static string CountMustBeGreaterThanOrEqualTo0 {
get {
return ResourceManager.GetString("CountMustBeGreaterThanOrEqualTo0", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HashAlgorithm&apos;s Create method returned null referenece..
/// </summary>

View File

@ -56,4 +56,7 @@
<data name="LowerCannotBeGreaterThanUpper" xml:space="preserve">
<value>{0} cannot be greater than {1}</value>
</data>
<data name="CountMustBeGreaterThanOrEqualTo0" xml:space="preserve">
<value>count must be greater than or equal to 0.</value>
</data>
</root>