コード例 #1
0
ファイル: Cirkus.cs プロジェクト: p3b0/CSharp
 public void ArtistUppträdande(Artist artist)
 {
     ArtistFöreställningarDictionary[artist]++;
 }
コード例 #2
0
ファイル: Class1.cs プロジェクト: bellyfat/CSharp
 public void Employ(Artist artist)
 {
     artistDictonary.Add(artist, 0);
 }
コード例 #3
0
ファイル: Cirkus.cs プロジェクト: p3b0/CSharp
 public void Anställ(Artist artist)
 {
     ArtistFöreställningarDictionary.Add(artist, 0);
 }
コード例 #4
0
ファイル: Class1.cs プロジェクト: bellyfat/CSharp
 public void ArtistPerformance(Artist artist)
 {
     artistDictonary[artist] += 1;
 }