decimal.GetBits() から int[] を取得します。int[] から 10 進数値を取得するには?
質問する
1252 次
3 に答える
3
Decimal(Int32[] bits)
コンストラクターを使用します。そのようです:
Decimal d = new Decimal( 123 );
Int32[] bits = d.GetBits();
Decimal e = new Decimal( bits );
Debug.Assert( d == e );
于 2012-09-26T07:14:42.477 に答える
1
decimal dec = new decimal(decimalArray);
于 2012-09-26T07:16:09.013 に答える
1
于 2012-09-26T07:15:42.227 に答える