Example #1
0
 public RangeFileTypeMatcher(FileTypeMatcher matcher, int maximumStartLocation)
 {
     this.matcher = matcher;
     this.maximumStartLocation = maximumStartLocation;
 }
Example #2
0
 public FileType(string name, string extension, FileTypeMatcher matcher)
 {
     this.name            = name;
     this.extension       = extension;
     this.fileTypeMatcher = matcher;
 }