Exemple #1
0
 public override void Copy(VerbWithGerman other)
 {
     if (other.GetType() == typeof(PrimitiveVerb))
     {
         PrimitiveVerb that = (PrimitiveVerb)other;
         German           = that.German;
         Imperfective     = that.Imperfective;
         Perfective       = that.Perfective;
         Reflexive        = that.Reflexive;
         ConjugationClass = that.ConjugationClass;
         PStem            = that.PStem;
         VStem            = that.VStem;
     }
 }
Exemple #2
0
 public override void Copy(VerbWithGerman other)
 {
     base.Copy(other);
     if (other.GetType() == typeof(PolishVerb))
     {
         PolishVerb that = (PolishVerb)other;
         JaP  = that.JaP;
         JaV  = that.JaV;
         TyP  = that.TyP;
         TyV  = that.TyV;
         OnP  = that.OnP;
         OnV  = that.OnV;
         MyP  = that.MyP;
         MyV  = that.MyV;
         WyP  = that.WyP;
         WyV  = that.WyV;
         OniP = that.OniP;
         OniV = that.OniV;
     }
 }
 public abstract void Copy(VerbWithGerman other);