标签:count for boolean col The ams bool mst int
以 /verysilent 为例
[Code] var isVerySilent: Boolean; function InitializeSetup(): Boolean; var j: Integer; begin isVerySilent := False; for j := 1 to ParamCount do if CompareText(ParamStr(j), ‘/verysilent‘) = 0 then begin isVerySilent := True; Break; end; if isVerySilent then Log (‘VerySilent‘) else Log (‘not VerySilent‘); end;
标签:count for boolean col The ams bool mst int
原文地址:https://www.cnblogs.com/liujx2019/p/11696918.html