1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| public class A {
// Parametres différents
private const string parametre1 = "MonParametre1";
private readonly Dictionary<string, string> parametre2 = new Dictionary<string, string>{{"Nom","Toto"},{"Prenom","Tata"}};
//Methodes communes
public void Methode1(string boisson, string manger)
{
string test = parametre1 + boisson;
TraitementRessource(test, parametre2);
}
private void Methode2(string test, string parametre2)
{
string essai = test + parametre2;
}
}
public class B {
// Parametres différents
private const string parametre1 = "AutreParametre";
private readonly Dictionary<string, string> parametre2 = new Dictionary<string, string>{{"Nom","loki"},{"Prenom","poki"}};
//Methodes communes
public void Methode1(string boisson, string manger)
{
string test = parametre1 + boisson;
TraitementRessource(test, parametre2);
}
private void Methode2(string test, string parametre2)
{
string essai = test + parametre2;
}
} |
Partager