Show / Hide Table of Contents

Class LegList

Inheritance
object
LegList
Implements
IEnumerable<Leg>
IEnumerable
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public class LegList : IEnumerable<Leg>, IEnumerable

Properties

Count

Declaration
public int Count { get; }
Property Value
Type Description
int

this[int]

Declaration
public Leg this[int index] { get; }
Parameters
Type Name Description
int index
Property Value
Type Description
Leg

Methods

GetEnumerator()

Declaration
public IEnumerator<Leg> GetEnumerator()
Returns
Type Description
IEnumerator<Leg>

Implements

IEnumerable<T>
IEnumerable
In this article
Back to top