public static string GetString(ERLVerbs _verb, EVerbType _type, ESex _sex) { return m_rverbs[_verb].To(_sex, _type); }
public static string GetString(ERLVerbs _verb, EVerbType _type, params Noun[] _nouns) { return m_rverbs[_verb].To(_nouns.Length == 1 ? _nouns[0].Sex : ESex.PLURAL, _type); }
public static string GetString(this ERLVerbs _verb, ESex _sex, EVerbType _type) { return(RusLanguageProcessor.GetString(_verb, _type, _sex)); }
public static string GetString(this ERLVerbs _verb, Noun _noun, EVerbType _type) { return(RusLanguageProcessor.GetString(_verb, _type, _noun)); }
public static string GetString(ERLVerbs _verb, EVerbType _type, ESex _sex) { return(m_rverbs[_verb].To(_sex, _type)); }
public static string GetString(ERLVerbs _verb, EVerbType _type, params Noun[] _nouns) { return(m_rverbs[_verb].To(_nouns.Length == 1 ? _nouns[0].Sex : ESex.PLURAL, _type)); }