C# Class Bids, tf_client

A struct to capture a list of bids.
Exibir arquivo Open project: wids-eria/tf_client Class Usage Examples

Public Properties

Property Type Description
bids Bid[],

Public Methods

Method Description
GetEnumerator ( ) : Enumerator,

Gets the enumerator.

GetHighestBidAmount ( ) : int

Gets the highest bid amount.

ToArray ( ) : Bid[],

Array accessor.

this ( int i ) : Bid,

Gets or sets the Bids with the specified index.

Method Details

GetEnumerator() public method

Gets the enumerator.
public GetEnumerator ( ) : Enumerator,
return Enumerator,

GetHighestBidAmount() public method

Gets the highest bid amount.
public GetHighestBidAmount ( ) : int
return int

ToArray() public method

Array accessor.
public ToArray ( ) : Bid[],
return Bid[],

this() public method

Gets or sets the Bids with the specified index.
public this ( int i ) : Bid,
i int /// Index. ///
return Bid,

Property Details

bids public_oe property

The bid list.
public Bid[], bids
return Bid[],