Entries from 2007-03-07 to 1 day

248 よくある誤用: 例外処理

#248 Often Misused: Exception Handlingより。 The _alloca() function allocates memory on the stack. If an allocation request is too large for the available stack space, _alloca() throws an exception. If the exception is not caught, the prog…

P/Invoke (Platform Invoke) などマーシャル属性を持つクラスにはジェネリック型を関連づけられない

これにも昨日からずっとハマってました。次のようなコードで再現します。 using System; using System.Runtime.InteropServices; public class Bar<T> { [DllImport("kernel32.dll")] public static extern void Beep(UInt32 freq, UInt32 duration); } public </t>…

コマンドプロンプトで計算をする

ひょっとしたらよく知られている事実なのかもしれませんが、Windows NT 系の拡張機能付きコマンドプロンプト (cmd) では SET コマンドの拡張 (/A オプション) により簡単な演算ができるようになっているのを昨日知りました。 C:\> SET /A 3+4 7 これだけでは…