使用 class 时无法解析单位名称 'xxxxx' 错误

cannot resolve unit name 'xxxxx' error while using class

我正在创建一个 Stringy 单元,它的类型是 TStringy = Class。然后我试图在我的表单中使用这个 class 。所以在其他 file.pas 中,我正在尝试使用它。这样做时使用 Stringy;在 Stringy 上,我收到红线错误“无法解析单位名称 'Stringy'

//TStringy.pas file:

unit Stringy;

interface

type
    TStringy = Class


//Code on form that is supposed to use it:

uses Stringy;

我将文件名从 TStringy.pas 更改为 Stringy.pas,问题已解决。