コード例 #1
0
        public override bool Equals(object obj)
        {
            EanEicCode other = (EanEicCode)obj;

            if (obj == null || other == null)
            {
                return(false);
            }
            return(Equals(other));
        }
コード例 #2
0
ファイル: Opm.cs プロジェクト: stexyz/be-opm-validation
 public Opm(EanEicCode code)
 {
     Code = code;
 }
コード例 #3
0
 protected bool Equals(EanEicCode other)
 {
     return(string.Equals(Code, other.Code));
 }