コード例 #1
0
 public BigInteger?GetValue()
 {
     if (PushData == null)
     {
         return(null);
     }
     return(Utils.BytesToBigInteger(PushData));
 }
コード例 #2
0
 private BigInteger CastToBigNum(byte[] b)
 {
     if (b.Length > 4)
     {
         throw new InvalidOperationException("CastToBigNum() : overflow");
     }
     return(Utils.BytesToBigInteger(b));
 }
コード例 #3
0
ファイル: ScriptReader.cs プロジェクト: sumghosh80/NBitcoin
        internal BigInteger?GetValue()
#endif
        {
            if (PushData == null)
            {
                return(null);
            }
            return(Utils.BytesToBigInteger(PushData));
        }
コード例 #4
0
		public BigInteger? GetValue()
		{
			if(PushData == null)
				return null;
			return Utils.BytesToBigInteger(PushData);
		}