コード例 #1
0
ファイル: BInteger.cs プロジェクト: WhiteBlackGoose/Sdk
 public BInteger(BInteger b)
 {
     this.m_big    = b.m_big;
     this.m_number = b.m_number;
 }
コード例 #2
0
ファイル: BList.cs プロジェクト: WhiteBlackGoose/Sdk
 public BList(BInteger length, List <T> values)
 {
     this.Length   = length;
     this.m_values = values;
 }