论坛


2011年1月6日 星期四

Effectively Using CodeSite Express

Embarcadero| EDN Delphi Feed |22:00:00

学用 ASP.Net 之 System.BitConverter 类

万一| 万一的 Delphi 博客 |18:10:00

使用 BitConverter 类的一组静态方法可以把一个整数、浮点数、字符或布尔值转换成一个 Byte[], 当然也可逆转.主要成员:/* 字段 */ BitConverter.IsLittleEndian //布尔值, 表示当前系统的字节顺序, 在 Windows 下此值是 true /* 静态方法 */ BitConverter.GetBytes(...

学用 ASP.Net 之 System.Collections.ArrayList 类

万一| 万一的 Delphi 博客 |13:42:00

ArrayList 是 .Net 的动态数组.主要成员:/* 静态方法 */ ArrayList.Adapter() //把其他 IList 对象包装为 ArrayList 使用 ArrayList.FixedSize() //包装为固定容量 ArrayList.ReadOnly() //包装为只读 ArrayList.Repeat() //根据指定次数的重复值创建 ArrayLis...

Overloading Delphi’s ShowMessage to accept Integer, Boolean, Float, ...

About.com| About.com Delphi Programming |02:00:33

inDelphi TIPS:: Delphi's ShowMessage procedure, defined in the dialogs.pas unit, displays a message in a dialog box, waits for the user to click an OK button.I'm using the ShowMessage procedure frequently while developing applications as a "debugg...