MemExchange.Core.SharedDto.Level1.MarketBestBidAskDto.Update C# (CSharp) Method

Update() public method

public Update ( MarketBestBidAskDto other ) : void
other MarketBestBidAskDto
return void
        public void Update(MarketBestBidAskDto other)
        {
            Symbol = other.Symbol;
            BestBidPrice = other.BestBidPrice;
            BestAskPrice = other.BestAskPrice;
            BestBidQuantity = other.BestBidQuantity;
            BestAskQuantity = other.BestAskQuantity;
        }
MarketBestBidAskDto