MtGoxTrader.Model.MtGoxDepthInfo.MtGoxDepthInfo C# (CSharp) Méthode

MtGoxDepthInfo() public méthode

public MtGoxDepthInfo ( ) : System
Résultat System
        public MtGoxDepthInfo()
        {
            this.asks = new List<MtGoxAsk>();
            this.bids = new List<MtGoxBid>();
            this.askGroup = new List<DepthInfoItem>();
            this.bidGroup = new List<DepthInfoItem>();
        }