type
  node=record
     number:string[18];
     phone:string[17];
     person:string[20];
     area:string[10];
  end;...
var
     node_ary_first:array of node;     setlength(node_ary_first,5);
     
     node_ary_first:=nil;//这句出错
     那么如何释放基于记录型的动态数组node_ary_first呢?????????