Ignore:
Timestamp:
Oct 13, 2007, 2:11:22 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

FormatIntegerDを実装。
UnitTestの失敗時の表示を目立つようにした。
ArrayListを名前空間System.Collectionsに入れた。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/com/decimal.ab

    r335 r355  
    1515    Sub Decimal(d As Decimal)
    1616'       dec = d なぜかコンパイルできない
     17        memcpy(VarPtr(dec), VarPtr(d.dec), Len(dec))
     18    End Sub
     19
     20    Sub Decimal(ByRef d As DECIMAL)
    1721        memcpy(VarPtr(dec), VarPtr(d), Len(dec))
    1822    End Sub
     
    340344
    341345    Const Function ToVariant() As Variant
    342         Return New Variant(dec)
     346        Return New Variant(This)
    343347    End Function
    344348
Note: See TracChangeset for help on using the changeset viewer.