2010-09-01から1ヶ月間の記事一覧

C#の型推論は怠けすぎ

2010-09-29(via やねうらおさんとこ)C#はバランスと取れた良い言語ですが、あえて欠点を挙げると型推論がイマイチですよね。 using System; using System.Collections.Generic; module M { static Main() : void { // C#のvarに近いが初期化は必須ではない /…

カスタム属性が見えるモノ

最近知ったショックなこと。 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Sample { [AttributeUsage(AttributeTargets.Class)] class MyAttribute : Attribute { public string Name { private set; …

RubyのCycle

ネットを見ていて、true, false, true...と繰り返すコードについての話題があり、そこでRubyにcycleなるものがあることを知りました。Rubyに対するアンテナが低くて・・・(^^;C#のEnumerableクラスには同様のものはありませんが、自分で書くとこんな感じでし…