umyobject.pas

来自「多数代码可以直接在Delphi6和Delphi7环境下运行。部分涉及.NET技术」· PAS 代码 · 共 20 行

PAS
20
字号
unit uMyObject;

interface

uses
  SysUtils;

type
  TMyObject = class(TObject)
  public
    iValue : Integer;
    fValue : Double;
    sValue : String;
    iArray : array[1..10] of Byte;
  end;

implementation

end.
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?