いろいろ備忘録日記

主に .NET とか Go とか Flutter とか Python絡みのメモを公開しています。

2012-03-14から1日間の記事一覧

64ビット環境か否かを判定できるEnvironmentクラスの便利なプロパティ (System.Environment, Is64BitOperatingSystem, Is64BitProcess)

C#

今更ながら知ったので、忘れないうちにメモメモ。 以前以下のような記事を書いていたのですが x86かx64か否かを判別する (IntPtr.Size, 4バイト, 8バイト, Windows Server 2008 R2) http://d.hatena.ne.jp/gsf_zero1/20110316/p1 .NET Framework 4.0よりEnvi…

Declarative multithreading (CodeProject, 宣言的マルチスレッド処理, ThreadBoundAttribute)

C#

CodeProjectにて発見。マルチスレッド処理を属性を利用して 宣言的に行うという内容の模様。メモメモ。後で必ず読む。 Declarative multithreading http://www.codeproject.com/Articles/288219/Declarative-multithreading ===============…