NLite.Inflector.Plural C# (CSharp) Method

Plural() public static method

单数转复数
public static Plural ( string word ) : string
word string
return string
        public static string Plural(string word)
        {
            Guard.NotNullOrEmpty(word, "word");
            return ApplyRules(_plurals, word);
        }