コード例 #1
0
ファイル: GammaCompanding.cs プロジェクト: ibebbs/Colourful
 public bool Equals(GammaCompanding other)
 {
     if (other == null)
     {
         throw new ArgumentNullException("other");
     }
     return(Gamma.Equals(other.Gamma));
 }
コード例 #2
0
        public bool Equals(GammaCompanding other)
        {
            if (other == null)
            {
                return(false);
            }

            return(Gamma == other.Gamma);
        }
コード例 #3
0
 public bool Equals(GammaCompanding other)
 {
     if (other == null) throw new ArgumentNullException("other");
     return Gamma.Equals(other.Gamma);
 }