コード例 #1
0
 public CellValueMap(CellMap srcMap)
 {
     this.regex_cellname          = new System.Text.RegularExpressions.Regex("^[a-zA-Z]*$");
     this.regex_cellname_wildcard = new System.Text.RegularExpressions.Regex("^[a-zA-Z\\*\\?]*$");
     this.dic    = new Dictionary <string, string>(System.StringComparer.OrdinalIgnoreCase);
     this.srcmap = srcMap;
 }
コード例 #2
0
 public CellValueMap( CellMap srcMap)
 {
     this.regex_cellname = new System.Text.RegularExpressions.Regex("^[a-zA-Z]*$");
     this.regex_cellname_wildcard = new System.Text.RegularExpressions.Regex("^[a-zA-Z\\*\\?]*$");
     this.dic = new Dictionary<string, string>(System.StringComparer.OrdinalIgnoreCase);
     this.srcmap = srcMap;
 }