コード例 #1
0
        public GraphPath AddSegment(IGraphSegment segment)
        {
            Condition.Requires(segment).IsNotNull();

            this.Segments.Add(segment);

            return(this);
        }
コード例 #2
0
ファイル: GraphPath.cs プロジェクト: Piirtaa/Decoratid
        public GraphPath AddSegment(IGraphSegment segment)
        {
            Condition.Requires(segment).IsNotNull();

            this.Segments.Add(segment);

            return this;
        }