Lines Matching full:minlen
22 public int MinLen;
27 int minLen, int maxLen, string postCharSet)
32 MinLen = minLen;
36 public SwitchForm(string idString, SwitchType type, bool multi, int minLen):
37 this(idString, type, multi, minLen, 0, "")
123 if (tailSize < switchForm.MinLen)
145 int minLen = switchForm.MinLen;
146 if (tailSize < minLen)
153 String stringSwitch = srcString.Substring(pos, minLen);
154 pos += minLen;
155 for (int i = minLen; i < switchForm.MaxLen && pos < len; i++, pos++)