Ejemplo n.º 1
0
 /// <inheritdoc />
 /// <seealso cref="GettextResourceManager.GetParticularPluralString(string,string,string,long)"/>
 public string GetParticularPluralString([NotNull] string context, string text, [NotNull] string textPlural, long count)
 {
     if (text == null)
     {
         throw new ArgumentNullException(nameof(text));
     }
     if (textPlural == null)
     {
         throw new ArgumentNullException(nameof(textPlural));
     }
     if (context == null)
     {
         throw new ArgumentNullException(nameof(context));
     }
     return(resourceManager.GetParticularPluralString(context, text, textPlural, count));
 }