IntRange.cs
Description du code
IntRange.cs est un fichier du projet PhotoBrol.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/photobrol/.
Projet PhotoBrol :
Editeur d'images en CSharp.
Code source ou contenu du fichier
Code c# (IntRange.cs) (94 lignes)
using System; using System.Collections.Generic; using System.Text; namespace be.gaudry.model.math { /// <summary> /// Represents an integer range with minimum and maximum values /// </summary> public class IntRange { private int min, max; /// <summary> /// Minimum value /// </summary> public int Min { get { return min; } set { min = value; } } /// <summary> /// Maximum value /// </summary> public int Max { get { return max; } set { max = value; } } /// <summary> /// Length of the range (difference between maximum and minimum values) /// </summary> public int Length { get { return max - min; } } /// <summary> /// Initializes a new instance of the <see cref="IntRange"/> class /// </summary> /// /// <param name="min">Minimum value of the range</param> /// <param name="max">Maximum value of the range</param> public IntRange(int min, int max) { this.min = min; this.max = max; } /// <summary> /// Check if the specified value is inside this range /// </summary> /// /// <param name="x">Value to check</param> /// /// <returns><b>True</b> if the specified value is inside this range or /// <b>false</b> otherwise.</returns> /// public bool IsInside(int x) { return ((x >= min) && (x <= max)); } /// <summary> /// Check if the specified range is inside this range /// </summary> /// /// <param name="range">Range to check</param> /// /// <returns><b>True</b> if the specified range is inside this range or /// <b>false</b> otherwise.</returns> /// public bool IsInside(IntRange range) { return ((IsInside(range.min)) && (IsInside(range.max))); } /// <summary> /// Check if the specified range overlaps with this range /// </summary> /// /// <param name="range">Range to check for overlapping</param> /// /// <returns><b>True</b> if the specified range overlaps with this range or /// <b>false</b> otherwise.</returns> /// public bool IsOverlapping(IntRange range) { return ((IsInside(range.min)) || (IsInside(range.max))); } } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1731619946 14/11/2024 22:32:26 |
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.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 30/10/2009, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/cs-photobrol-source-rf-model/math/IntRange.cs.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.