Example #1
0
 public BigInteger?GetValue()
 {
     if (PushData == null)
     {
         return(null);
     }
     return(Utils.BytesToBigInteger(PushData));
 }
Example #2
0
 private BigInteger CastToBigNum(byte[] b)
 {
     if (b.Length > 4)
     {
         throw new InvalidOperationException("CastToBigNum() : overflow");
     }
     return(Utils.BytesToBigInteger(b));
 }
Example #3
0
        internal BigInteger?GetValue()
#endif
        {
            if (PushData == null)
            {
                return(null);
            }
            return(Utils.BytesToBigInteger(PushData));
        }
Example #4
0
		public BigInteger? GetValue()
		{
			if(PushData == null)
				return null;
			return Utils.BytesToBigInteger(PushData);
		}