Table of Contents

Class Edge

Namespace
Echo.Graphing
Assembly
Echo.dll

Provides a basic implementation of an edge in a graph.

public sealed class Edge : IEdge
Inheritance
Edge
Implements
Inherited Members
Extension Methods

Constructors

Edge(INode, INode)

Creates a new edge in a graph.

public Edge(INode origin, INode target)

Parameters

origin INode

The node that this edge starts at in the directed graph.

target INode

The node that this edge points to in the directed graph.

Properties

Origin

Gets the node that this edge starts at in the directed graph.

public INode Origin { get; }

Property Value

INode

Target

Gets the node that this edge points to in the directed graph.

public INode Target { get; }

Property Value

INode

Methods

ToString()

public override string ToString()

Returns

string