public bool CopyFrom(StreamObject other)
 {
     if (IsDead())
     {
         throw new Exceptions.SimObjectPointerInvalidException();
     }
     return(InternalUnsafeMethods.StreamObjectCopyFrom(ObjectPtr->ObjPtr, other.ObjectPtr->ObjPtr));
 }
Beispiel #2
0
 public void CloseFile(StreamObject stream)
 {
     if (IsDead())
     {
         throw new Exceptions.SimObjectPointerInvalidException();
     }
     InternalUnsafeMethods.ZipObjectCloseFile(ObjectPtr->ObjPtr, stream.ObjectPtr->ObjPtr);
 }