'宣言
Public ReadOnly Property Integer As Nullable(Of Decimal)
public Nullable<decimal> Integer {get;}
'宣言
Public ReadOnly Property Integer As Nullable(Of Decimal)
public Nullable<decimal> Integer {get;}
このプロパティを使用して、実行時に現在の値の整数部を取得できます。また、Decimal プロパティを使用して小数部を取得することもできます。例:
number1.Value = -1234.120
この例では、Integer は -1234 を返し、Decimal プロパティは -0.12 を返します。
number1.Value = 1234
この例では、Integer は 1234 を返し、Decimal プロパティは0を返します。
基になる値が null 参照 (Visual Basicでは Nothing) に設定されている場合、このプロパティは null 参照 (Visual Basicでは Nothing) を返します。