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

MEF Programing Guide 3.Declaring Exports を試してみた

Managed Extensibility Framework - Documentationの 第三回です。Declaring Exports を見ていきます。 ExportAttribute Class (System.ComponentModel.Composition) は、プロパティやメソッドにも付与出来るのですが、それのサンプルコードが載っています。…

Code Contract のサンプル InterfaceContracts を眺めてみる

ます、Code Contracts for .NET extension からダウンロード、インストールします。 インストール後、%PROGRAMFILES%\Microsoft\Contracts\Samples に Samples.zip がありますので解凍します。 展開後、幾つかのサンプルがありますが今回は InterfaceContrac…

.NET 4 Parallel を試してみた

Parallel ってのが追加されるのは、知ってたんだけど、「デブサミ 2010 【18-D-1】.NET Framework 4概要」で動いているのを初めて見たので試してみた。 using System; using System.Threading; using System.Threading.Tasks; class Program { delegate void…

Cloud Drive 読み書き出来た!

CloudDrive 少し進んだ! - お だ のスペース のさらに続きです。 ファイルの読み書きが出来たので、晒します。 Default.aspx <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebRole1._Default" %>

CloudDrive 少し進んだ!

CloudDrive 手強い… - お だ のスペース の続きです。 昨日は、開発環境(Development Storage)で試していたのですが、何が悪いのかさっぱりだったので 実際の Azure Storage で試してみました。 なんと、例外が出なくなりました! これで、色々試せそうです…

CloudDrive 手強い…

Windows Azure SDK 1.1 February がリリース!! - waりとnaはてな日記 Using the Windows Azure Storage Services の Windows Azure Drives white paper.Windows Azure Drives white paper. を参考に少し試してみました。がエラーが出て動かない…。 とりあ…

Windows Azure SDK February 2010 が出てます

Microsoft Download Center Microsoft Download Center 出ています。 注意点: Tools for Visual Studio の方は、VS2008 SP1 か VS2010 RC 版でないとインストール出来ないようです。 VS2010 Beta2 日本語のみの環境では、インストール出来ませんでした。 Cl…

MEF Programming Guide 2.Defining Composable Parts and Contracts を試してみた

Managed Extensibility Framework - Documentation の 第二回です。Defining Composable Parts and Contracts を見ていきます。 System.ComponentModel.Composition.Import と System.ComponentModel.Composition.Export 属性を指定してインジェクションする…