2005-12-17から1日間の記事一覧

12/17

・Standard ECMA-372 C++/CLI Language Specification 今のところ実装はMSのしかありませんが、Unix系のプラットフォームでも使えるようになって欲しいですね。

yieldその後

結構、使えるようになってきた? using System; using System.Collections.Generic; class Fib : IEnumerable [int] { mutable max = 0; public this (n : int) { max = n; } public GetEnumerator () : IEnumerator [int] { mutable (a, b) = (0, 1); while…