昔自分が書いたC#のコードのコメントメンテナンスをする機会がきました。(コメント書いてなかったので書かないといけなくなった)
そこで面白いコードを見つけたのでメモ。残念ながらいつものようにC#1.1です。
private delegate bool Selection (Control ctl);
private static IList EachControls (Control parent, IList list, Selection s, Filter f) if (!list.Contains(parent)) if (parent.HasChildren) |
private static IDictionary EachControls (Control parent, IDictionary dic, Selection s, Filter f) if (s(parent)) if (parent.HasChildren) |
0 件のコメント:
コメントを投稿