Struct Triple
Represents a triple (or a connection between three adjacent customers).
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public struct Triple
Constructors
Triple(Int32, Int32, Int32)
Creates a new triple.
Declaration
public Triple(int from, int along, int to)
Parameters
|
System.Int32
from
|
|
System.Int32
along
|
|
System.Int32
to
|
Properties
Along
Returns the along customer.
Declaration
public int Along { get; set; }
Property Value
|
System.Int32
|
From
Returns the from customer.
Declaration
public int From { get; set; }
Property Value
|
System.Int32
|
To
Returns the to customer.
Declaration
public int To { get; set; }
Property Value
|
System.Int32
|
Methods
Equals(Object)
Returns true if the other object is equal.
Declaration
public override bool Equals(object obj)
Parameters
|
System.Object
obj
|
Returns
|
System.Boolean
|
Overrides
System.ValueType.Equals(System.Object)
GetHashCode()
Returns a hashcode.
Declaration
public override int GetHashCode()
Returns
|
System.Int32
|
Overrides
System.ValueType.GetHashCode()
ToString()
Returns a description of this edge.
Declaration
public override string ToString()
Returns
|
System.String
|
Overrides
System.ValueType.ToString()