23 public Among(System.String s,
int substring_i,
int result, System.String methodname,
SnowballProgram methodobject)
25 this.s_size = s.Length;
27 this.substring_i = substring_i;
29 this.methodobject = methodobject;
30 if (methodname.Length == 0)
38 this.method = methodobject.GetType().GetMethod(methodname, System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.DeclaredOnly, null,
new System.Type[0], null);
40 catch (System.MethodAccessException)
49 public System.String
s;
52 public System.Reflection.MethodInfo
method;