Generated class implementing code defined by a snowball script.
Inheritance: SF.Snowball.SnowballProgram
Exemple #1
0
 protected internal virtual void  copyFrom(EnglishStemmer other)
 {
     B_Y_found = other.B_Y_found;
     I_p2      = other.I_p2;
     I_p1      = other.I_p1;
     base.copyFrom(other);
 }
		protected internal virtual void  copy_from(EnglishStemmer other)
		{
			B_Y_found = other.B_Y_found;
			I_p2 = other.I_p2;
			I_p1 = other.I_p1;
			base.copy_from(other);
		}
 public static string GetStemmedQuery(this String query)
 {
     var stemmer = new EnglishStemmer();
     stemmer.SetCurrent(query);
     stemmer.Stem();
     return stemmer.GetCurrent();
 }