• OverbyteIcsV7Gold

    ICS & MidWare coding style THIS IS A WORK IN PROGRESS ! 1. Keywords All Delphi keywords are written in lower case except data types. function Demo(const Value : String): String; begin Result := 'This is my demo'; end; 2. Data types Built-in data types are written in lower case except the first letter. See example above. All new data types are created using concatenated words in lower case with each first letter in uppercase with preceding letter ‘T’. If data type is a pointer to something then first letter ‘T’ is replaced by ‘P’. TMyOwnDataRecord = record Street : String; Value : Integer; end; PMyOwnDataRecord = ^TMyOwnDataRecord ;

    0
    54
    3.94MB
    2018-05-02
    0
关注 私信
上传资源赚积分or赚钱