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);
		}
Пример #3
0
 public static string GetString(this ERLVerbs _verb, ESex _sex, EVerbType _type)
 {
     return(RusLanguageProcessor.GetString(_verb, _type, _sex));
 }
Пример #4
0
 public static string GetString(this ERLVerbs _verb, Noun _noun, EVerbType _type)
 {
     return(RusLanguageProcessor.GetString(_verb, _type, _noun));
 }
Пример #5
0
 public static string GetString(ERLVerbs _verb, EVerbType _type, ESex _sex)
 {
     return(m_rverbs[_verb].To(_sex, _type));
 }
Пример #6
0
 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));
 }