我用Delphi2005,建立一个vcl form application for .net。
 写一个普通的class例如:
 type
  studentclass=class
    public
      aa:integer;
  end;然后在一个button事件调用
procedure TForm1.Button1Click(Sender: TObject);
var
  s:studentclass;
begin
  s:=studentclass.create();///但是这里竟然说没有create方法?为什么?
  s.aa:=100;
  ShowMessage(inttostr(s.aa));
end;
  有没有人试过??  建立vcl form application for win32的工程里面这样用没有问题。