Retourner au contenu associé (dépêche : Lisaac 0.12 en GPL v3)
Posté par TImaniac (site web personnel) le 26 septembre 2007 à 13:29. En réponse à la dépêche Lisaac 0.12 en GPL v3. Évalué à 1.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: sonntag
Posté par TImaniac (site web personnel) . En réponse à la dépêche Lisaac 0.12 en GPL v3. Évalué à 1.
Lisaac :
mon_arbre.for_all { i : ITEM;
//code
};
C# :
mon_arbre.Foreach(delegate(ITEM i)
{
//code
});
ou (toujours C#) :
mon_arbre.Foreach(i =>
{
//mon code
});