Assembler.BasicToken.Matches C# (CSharp) Méthode

Matches() public méthode

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