You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mchsamples-.net-core/ex_028_006_Strategy_et_inte.../Cube.cs

22 lines
604 B

// ========================================================================
//
// Copyright (C) 2016-2017 MARC CHEVALDONNE
// marc.chevaldonne.free.fr
//
// Module : Cube.cs
// Author : Marc Chevaldonné
// Creation date : 2016-10-03
//
// ========================================================================
namespace ex_028_006_Strategy_et_interface
{
class Cube : IModifieur
{
public int Modifier(int nombreAModifier)
{
return nombreAModifier * nombreAModifier * nombreAModifier;
}
}
}