Stat.cs
Description du code
Stat.cs est un fichier du projet BrolDev.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/broldev/src/.
Projet BrolDev : Librairie de composants réutilisables pour les applications BrolDev en CSharp.
Code source ou contenu du fichier
Code c# (Stat.cs) (130 lignes)
using System; using System.Collections.Generic; namespace be.gaudry.model { public class Stat { #region declarations and constructors private string labelFormat; private double total; private Dictionary<string, double> values; public Stat() { labelFormat = "{0:0.0%} pour un total de {1}"; } public Stat(Dictionary<string, double> values, string labelFormat) { this.values = values; foreach (double i in values.Values) { this.total += i; } this.labelFormat = labelFormat; } public Stat(string labelFormat) : this() { this.labelFormat = labelFormat; } #endregion #region properties public Dictionary<string, double> Dictionary { get { return values; } set { this.values = value; } } public double Total { get { return total; } } public double[] Values { get { int i = 0; foreach (KeyValuePair<string, double> kvp in values) { tValues[i++] = kvp.Value; } return tValues; } } public String[] Texts { get { int i = 0; foreach (KeyValuePair<string, double> kvp in values) { texts[i++] = kvp.Key; } return texts; } } public String[] Labels { get { string[] labels; int i = 0; foreach (KeyValuePair<string, double> kvp in values) { labels[i++] = String.Format(labelFormat, ((double)kvp.Value / total), kvp.Value, kvp.Key); } return labels; } } public String LabelFormat { get { return labelFormat; } set { labelFormat = value; } } #endregion #region public methods /// <summary> /// Increase value according to the key. Increase step is 1. /// </summary> /// <param name="key">string used as key to retreive the value to increase.</param> public void increase(string key) { increase(key, 1); } /// <summary> /// Increase value according to the key, with given step. /// </summary> /// <param name="key">string used as key to retreive the value to increase.</param> /// <param name="step">double used to increase the value according to the key.</param> public void increase(string key, double step) { if (!values.ContainsKey(key)) { values.Add(key, 0); } total += step; values[key] += step; } /// <summary> /// Delete all key/value pairs and reset total. /// Don't reset labelFormat. /// </summary> public void clear() { total = 0; values.Clear(); } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1732214863 21/11/2024 19:47:43 |
| _ | config | 0 octets | 1541007188 31/10/2018 18:33:08 |
| _ | enums | 0 octets | 1541007189 31/10/2018 18:33:09 |
| _ | exceptions | 0 octets | 1541007189 31/10/2018 18:33:09 |
| _ | drawing | 0 octets | 1541007188 31/10/2018 18:33:08 |
| _ | win32 | 0 octets | 1541007190 31/10/2018 18:33:10 |
| _ | file | 0 octets | 1541007190 31/10/2018 18:33:10 |
| _ | comparators | 0 octets | 1541007188 31/10/2018 18:33:08 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 16/10/2009 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/cs-broldev-source-rf-model/Stat.cs.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.