Struct VertexAndWeight<T>
Represents a vertex and associated weight.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
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 VertexAndWeight<T>
where T : struct
Type Parameters
|
T
|
Constructors
VertexAndWeight(UInt32)
Creates a new vertex and weight with weight zero.
Declaration
public VertexAndWeight(uint vertex)
Parameters
|
System.UInt32
vertex
|
Properties
Vertex
Gets or sets the vertex.
Declaration
public uint Vertex { get; set; }
Property Value
|
System.UInt32
|
Weight
Gets or sets the weight.
Declaration
public T Weight { get; set; }
Property Value
|
T
|