Arc.Domain.Units.Moneybag.this C# (CSharp) Метод

this() публичный Метод

Gets the Arc.Domain.Units.Money with the specified currency.
public this ( Arc.Domain.Units.Currency currency ) : Money
currency Arc.Domain.Units.Currency
Результат Money
        public Money this[Currency currency]
        {
            get
            {
                return Bag.ContainsKey(currency) ? Bag[currency] : null;
            }
        }