class  A
{  
  public static BB[]  aaaa=new BB[100];
  public struct C
  {    public byte[]  bb;
  }}class   D
{
  A[n].bb=bew byte[256];
  
}
请问  数组bb的生存空间?就是数组bb的空间将在何时被释放??
      是类D结束以后,还是在结构C释放以后???