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 44 45
| using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace Coach
{
class Program
{
static void Main(string[] args)
{
NotifyIcon notifyIcon = new NotifyIcon();
notifyIcon.Icon = Properties.Resources.services;
notifyIcon.Visible = true;
notifyIcon.Text = "Application de calcul";
string valeursAAfficher = string.Empty;
double[] valeurACalculer = new double[args.Length];
try
{
for (int i = 0; i < args.Length; i++)
{
valeursAAfficher = valeursAAfficher + args[i] + " ";
valeurACalculer[i] = Convert.ToDouble(args[i]);
}
/*System.Console.
WriteLine("l'addition de {0} est {1}.",
valeursAAfficher,
Calculateur.Ajouter(valeurACalculer));*/
MessageBox.Show(string.Format("L'addition de {0} est {1} !!! ",
valeursAAfficher,
Calculateur.Ajouter(valeurACalculer)));
}
catch (Exception)
{
MessageBox.Show("erreur: arguments numériques uniquement");
}
finally
{
System.Console.ReadKey();
}
}
}
} |
Partager