コード例 #1
0
 public SmartEmpSearchInfo(MunisEmployee munisInfo, string searchValue, int matchDistance)
 {
     this.SearchResult  = munisInfo;
     this.SearchString  = searchValue;
     this.MatchLength   = searchValue.Length;
     this.MatchDistance = matchDistance;
 }
コード例 #2
0
 public SmartEmpSearchInfo(MunisEmployee munisInfo, string searchValue) : this(munisInfo, searchValue, 0)
 {
 }