Esempio n. 1
0
        public bool IsMatch(string aBinary)
        {
            SymByte value = 0;
            SymByte mask  = SymBitUtils.CreateMask(aBinary, out value);
            bool    ret   = (mask & iValue) == value;

            return(ret);
        }
Esempio n. 2
0
        public static SymByte CreateMask(string aBinary, out SymByte aExpectedValue)
        {
            byte    value = 0;
            SymByte ret   = CreateMask(aBinary, out value);

            aExpectedValue = value;
            return(ret);
        }
Esempio n. 3
0
        public override bool Equals(object aObject)
        {
            bool ret = false;

            //
            if (aObject != null && aObject is SymByte)
            {
                SymByte other = (SymByte)aObject;
                ret = (other.Value == this.Value);
            }
            //
            return(ret);
        }