Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Exemple de tri
Test : trier les ville par densite
Utiliser la classe :
class Ville
{
public Ville(string name, int nbHabitant, decimal surface, decimal densite)
{
NbHabitant = nbHabitant;
Surface = surface;
Name = name;
Densite = densite;
}
public int NbHabitant { get; set; }
public decimal Surface { get; set; }
public string Name { get; set; }
public decimal Densite { get; set; }
public override string ToString()
{
return $"{Name} - Habitants: {NbHabitant}, Surface: {Surface} km²";
}
}
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
46
47
48
49
50
51
// {
using System;
using System.Collections.Generic;
class Ville
{
public Ville(string name, int nbHabitant, decimal surface, decimal densite)
{
NbHabitant = nbHabitant;
Surface = surface;
Name = name;
Densite = densite;
}
public int NbHabitant { get; set; }
public decimal Surface { get; set; }
public string Name { get; set; }
public decimal Densite { get; set; }
public override string ToString()
{
return $"{Name} - Habitants: {NbHabitant}, Surface: {Surface} km²";
}
}
class Hello
{
static void Main()
{
var villeHabitants = new Dictionary<string, int>() {
{"Paris",2240621},
{"Marseille",852516},
{"Lyon",496343},
{"Toulouse",453317},
{"Nice",343629},
{"Nantes",291604},
{"Strasbourg",274394},
{"Montpellier",268456},
{"Bordeaux",241287},
{"Lille",228652},
{"Rennes",209860},
{"Reims",181893},
{"Le Havre",173142},
{"Saint-Étienne",171483},
{"Toulon",164899},
{"Grenoble",158346},
{"Dijon",152071},
{"Angers",149017},
{"Nîmes",146709},
{"Villeurbanne",146282},
{"Le Mans",143599},
Press desired key combination and then press ENTER.
Advanced usage
If you want a more complex example (external libraries, viewers...), use the Advanced C# template
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content