'Declaration
Public Function FindByDecimalValue( _ ByVal value As Decimal _ ) As EnumerationMember
'Usage
Dim instance As EnumerationDataType Dim value As Decimal Dim value As EnumerationMember value = instance.FindByDecimalValue(value)
public EnumerationMember FindByDecimalValue( decimal value )
public: EnumerationMember^ FindByDecimalValue( decimal value )
Parameters
- value
- The enumeration value to be found.
Valid values of this parameter are in the range from
-9223372036854775808 (Int64.MinValue)
to9223372036854775807 (Int64.MaxValue)
.
Return Value
null
reference. When there is more than one match, the first matching enumeration member found is returned.
This method can return null
(Nothing
in Visual Basic).