Sharekhan.domain.Price.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : Price
return Price
        public static Price operator +(Price left, Price right)
        {
            return new Price(left.Value + right.Value);
        }

Same methods

Price::operator ( ) : bool