2008-11-06から1日間の記事一覧

Generics.Collections.TDictionary

program sample_dict1; {$APPTYPE CONSOLE} uses Generics.Collections; var dict: TDictionary<string,string>; s: string; begin dict := TDictionary<string,string>.Create; try dict.Add('でるふぁい', 'Delphi'); dict.Add('hoge', 'ふが'); Writeln(dict.ToString); for s in dict.K</string,string></string,string>…

コンソールアプリケーションのテンプレート

いつからこうなってるのかわからないけれど、Delphi2009でコンソールアプリの新規作成をしたらテンプレートが変わってた。 program Project1; {$APPTYPE CONSOLE} uses SysUtils; begin try { TODO -oUser -cConsole Main : ここにコードを記述してください …