Voici la solution que j'ai suivie :
public class StringFromInt
{
public enum FormatStyle
{
Kilo = 1000,
Mega = 1000000
}
public int Number;
public FormatStyle Format
{
get
{
switch (LimitValueBeforeConversion)
{
case 1000: return FormatStyle.Kilo;
case 1000000: return FormatStyle.Mega;
default:
throw new NotImplementedException("Vous devez implémenter le code pour ce genre de valeur");
}
}
set
{
if (value == FormatStyle.Kilo)
{
LimitValueBeforeConversion = 1000;
}
else if (value == FormatStyle.Mega)
{
LimitValueBeforeConversion = 1000000;
}
}
}
public int LimitValueBeforeConversion
{ get; set; }
public static implicit operator int(StringFromInt s)
{
return s.Number;
}
public static implicit operator StringFromInt(int number)
{
StringFromInt s = new StringFromInt(number);
return s;
}
#region Constructors
public StringFromInt(int number, FormatStyle format)
{
this.Number = number;
Format = format;
}
public StringFromInt(int number)
: this(number, FormatStyle.Kilo)
{
if (number >= 1000000)
{
this.Format = FormatStyle.Mega;
}
}
#endregion
public override string ToString()
{
if (Number >= LimitValueBeforeConversion)
{
string formatString = "0.#k";
switch (Format)
{
case FormatStyle.Kilo:
formatString = "0.#k";
break;
case FormatStyle.Mega:
formatString = "0.#m";
break;
default:
throw new NotImplementedException("Vous devez implémenter le code pour ce genre de valeur");
}
return ((double)Number / LimitValueBeforeConversion).ToString(formatString);
}
else
{
return Number.ToString();
}
}
}
Et voici un programme de test :
class Program
{
static void Main(string[] args)
{
int i = 31240;
string StringRepresentation = ((double)i / 1000).ToString("0.#k");
int resultBackWithParse = int.Parse(StringRepresentation.Substring(0, StringRepresentation.Length - 1).Replace(CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator, string.Empty)) * 100;
Console.WriteLine("Nombre de base : " + i.ToString());
Console.WriteLine(new string('-', 35));
Console.WriteLine("Représentation en chaîne de caractères : " + StringRepresentation);
Console.WriteLine("Représentation entière avec Int.Parse : " + resultBackWithParse.ToString());
Console.WriteLine();
StringFromInt MySolutionNumber = i;
int resultBackWithStringFromInt = MySolutionNumber;
Console.WriteLine("Représentation en chaîne de caractères avec StringFromInt : " + MySolutionNumber.ToString());
Console.WriteLine("Représentation entière avec StringFromInt : " + resultBackWithStringFromInt);
Console.WriteLine(new string('=', 35) + "\n");
i = 123456789;
StringFromInt MyNumber = 123456789;
int resultBack = MyNumber;
Console.WriteLine("Nombre de base : " + i.ToString());
Console.WriteLine(new string('-', 35));
Console.WriteLine("Représentation en chaîne de caractères avec StringFromInt : " + MyNumber);
Console.WriteLine("Représentation entière avec StringFromInt : " + resultBack);
Console.ReadKey(true);
}
}
Comme vous pouvez le remarquer, il n'est pas nécessaire d'utiliser l'initialiseur "new", je veux dire qu'il n'est pas nécessaire de faire :
StringFromInt Number = new StringFromInt(YourNumber)
Grâce à l'opérateur implicite, vous pouvez faire :
StringFromInt Number = YourNumber
Je ne sais pas, mais je pense que c'est un bon début, qu'en pensez-vous ?
De toute façon, j'ai réussi à faire ce que je voulais, donc pour les personnes qui pensaient que cela n'était pas possible, vous voyez, c'est possible :-)
Évidemment, cela peut être amélioré : cette version fonctionne uniquement pour les milliers et les millions.
Sincères salutations