コード例 #1
0
 public IndefiniteNoun(Noun noun)
 {
     Noun = noun;
 }
コード例 #2
0
 public IndefiniteNoun(string noun, NounClass nounClass = NounClass.It)
 {
     Noun = new Noun(noun, nounClass);
 }
コード例 #3
0
ファイル: Verbs.cs プロジェクト: rba100/factexpressions
        public static string Conjugate(this IVerb verb, IExpression subject, Tense tense)
        {
            var nounExpression = new Noun(subject.ToString());

            return(verb.Conjugate(nounExpression, tense));
        }