2006-01-30から1日間の記事一覧

Microsoft Developers Conference2006

>NyaRuRuさん 2/2の連絡方法を確保しておきたいのでメールください。yaneSDK4CsのアドレスでOKです。

拡張メソッド

C#3.0のアレ。Nemerleでもサポートされました。 using System; module Extentions { public ToInt32 (this s : string) : int { Int32.Parse (s) } } def s = "123"; Console.WriteLine ("s = {0}", s.ToInt32 ()); 構文はC#3.0同様、引数の前にthisを付ける…