MemExchange.Core.SharedDto.Level1.MarketBestBidAskDto.Update C# (CSharp) 메소드

Update() 공개 메소드

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