2004-07-06から1日間の記事一覧

Iteratorの使いどころ

ディレクトリ走査みたいな処理に威力を発揮しそう。 #region Using directives using System; using System.IO; using System.Collections.Generic; #endregion namespace ConsoleApplication1 { delegate bool Predicate(FileSystemInfo fsi); class Progra…