예제 #1
0
파일: UInt256.cs 프로젝트: xia7410/BitSharp
 public UInt256(ulong value)
     : this(Bits.GetBytes(value))
 {
 }
예제 #2
0
파일: UInt256.cs 프로젝트: xia7410/BitSharp
 public UInt256(uint value)
     : this(Bits.GetBytes(value))
 {
 }