public bool Matches(BasicToken template) { if (!string.IsNullOrEmpty(template.Value) && Value != template.Value) { return(false); } return(Type == template.Type); }
public bool Matches(BasicToken template) { if (!string.IsNullOrEmpty(template.Value) && Value != template.Value) return false; return Type == template.Type; }