示例#1
0
 /// <summary>Read out the HDU from the data stream.  This
 /// will overwrite any existing header and data components.
 /// </summary>
 public virtual void Read(ArrayDataIO stream)
 {
     myHeader = Header.ReadHeader(stream);
     myData = myHeader.MakeData();
     myData.Read(stream);
 }