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_008_multicast_et_int.../AffichePourcentage.cs

27 lines
668 B

// ========================================================================
//
// Copyright (C) 2016-2017 MARC CHEVALDONNE
// marc.chevaldonne.free.fr
//
// Module : AffichePourcentage.cs
// Author : Marc Chevaldonné
// Creation date : 2016-10-03
//
// ========================================================================
using static System.Console;
namespace ex_028_008_multicast_et_interfaces
{
class AffichePourcentage : IProgression
{
public int Progression
{
set
{
WriteLine($"{value}%...");
}
}
}
}