예제 #1
0
 public RemoteVolume(System.Data.IDataReader rd)
 {
     this.ID   = rd.GetInt64(0);
     this.Name = rd.GetString(1);
     this.Size = rd.ConvertValueToInt64(2);
     this.Hash = rd.ConvertValueToString(3);
     this.VerificationCount = rd.ConvertValueToInt64(4);
 }