Exemplo n.º 1
0
        public bool Match(IScopeClose closer)
        {
            if (opener == null)
            {
                return(false);
            }

            return(opener.Match(closer));
        }
Exemplo n.º 2
0
 public bool Match(IScopeClose other)
 {
     return(typeof(Close) == other.GetType());
 }