コード例 #1
0
 public bool Equals(VideoFormatInfo other)
 {
     return(true && Format.Equals(other.Format) && Name.Equals(other.Name) && Description.Equals(other.Description) && Flags.Equals(other.Flags) && Bits.Equals(other.Bits) && NComponents.Equals(other.NComponents) && Shift.Equals(other.Shift) && Depth.Equals(other.Depth) && PixelStride.Equals(other.PixelStride) && NPlanes.Equals(other.NPlanes) && Plane.Equals(other.Plane) && Poffset.Equals(other.Poffset) && WSub.Equals(other.WSub) && HSub.Equals(other.HSub) && UnpackFormat.Equals(other.UnpackFormat) && UnpackFunc.Equals(other.UnpackFunc) && PackLines.Equals(other.PackLines) && PackFunc.Equals(other.PackFunc) && TileMode.Equals(other.TileMode) && TileWs.Equals(other.TileWs) && TileHs.Equals(other.TileHs));
 }
コード例 #2
0
 public bool Equals(AudioFormatInfo other)
 {
     return(true && Format.Equals(other.Format) && Name.Equals(other.Name) && Description.Equals(other.Description) && Flags.Equals(other.Flags) && Endianness.Equals(other.Endianness) && Width.Equals(other.Width) && Depth.Equals(other.Depth) && Silence.Equals(other.Silence) && UnpackFormat.Equals(other.UnpackFormat) && UnpackFunc.Equals(other.UnpackFunc) && PackFunc.Equals(other.PackFunc));
 }