Exemplo n.º 1
0
Arquivo: TPath.cs Projeto: zanedp/Nett
        public bool Equals(TPath other)
        {
            if (other == null)
            {
                return(false);
            }
            if (other.segment != this.segment)
            {
                return(false);
            }

            return(this.prefixPath == other.prefixPath);
        }
Exemplo n.º 2
0
 private TPath(TPath parent, PathSegment segment)
 {
     this.parent  = parent;
     this.segment = segment;
 }
Exemplo n.º 3
0
Arquivo: TPath.cs Projeto: zanedp/Nett
 private TPath(TPath prefixPath, ITPathSegment segment)
 {
     this.prefixPath = prefixPath;
     this.segment    = segment;
 }
Exemplo n.º 4
0
Arquivo: TPath.cs Projeto: zanedp/Nett
 public TPath()
 {
     this.prefixPath = null;
     this.segment    = null;
 }