Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は WideChar 配列を持っています。空っぽにしたい(今はゴミだらけ)。= #0; の char 配列で行うように、WideChar 配列でこれを行う方法を知りたいです。
前もって感謝します
デルファイ関数FillCharはそれを行う方法です。という名前の配列がある場合はArr1、単に使用FillChar(Arr1,SizeOf(Arr1),#0)して目的を達成します。
FillChar
Arr1
FillChar(Arr1,SizeOf(Arr1),#0)