Exemplo n.º 1
0
        public override int GetHashCode()
        {
            var hash = 17;

            hash = hash * 23 + DatasetID.GetHashCode();
            return(hash);
        }
Exemplo n.º 2
0
        public override bool Equals(object obj)
        {
            var factor = (AlignmentData)obj;

            if (factor == null)
            {
                return(false);
            }
            if (!DatasetID.Equals(factor.DatasetID))
            {
                return(false);
            }
            return(true);
        }
Exemplo n.º 3
0
 protected override int GetInputs(AsyncCodeActivityContext ctx) => DatasetID.Get(ctx);