Sharekhan.domain.Price.Compute C# (CSharp) Méthode

Compute() public méthode

public Compute ( double>.Func func ) : Price
func double>.Func
Résultat Price
        public Price Compute(Func<double,double> func)
        {
            return new Price(func(Value));
        }