public RemoteInfo(IntPtr ptr) { if (ptr != IntPtr.Zero) { TcRemoteInfo data = (TcRemoteInfo)Marshal.PtrToStructure(ptr, typeof(TcRemoteInfo)); Size = TcUtils.GetULong(data.sizeHigh, data.sizeLow); LastWriteTime = TcUtils.FromFileTime(data.lastWriteTime); Attributes = (FileAttributes)data.attr; } }