コード例 #1
0
ファイル: CurrencyPair.cs プロジェクト: psryland/rylogic_code
 public bool Equals(CurrencyPair b)
 {
     return(b.Base == Base && b.Quote == Quote);
 }
コード例 #2
0
 public OrderBook(CurrencyPair pair, long nonce)
     : this()
 {
     Pair  = pair;
     Nonce = nonce;
 }