Alsing.Text.Token.HasTag C# (CSharp) Method

HasTag() public method

public HasTag ( object tag ) : bool
tag object
return bool
        public bool HasTag(object tag)
        {
            return Array.IndexOf(Tags, tag) >= 0;
        }
    }