Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Namespace Sitesource.Currency
- ''' <summary>
- ''' Currency interface.
- ''' </summary>
- ''' <remarks></remarks>
- Public Interface ICurrency
- ''' <summary>
- ''' Get the currency symbol.
- ''' </summary>
- ''' <returns></returns>
- ''' <remarks></remarks>
- Function GetCurrencySymbol() As String
- ''' <summary>
- ''' Get the currency code.
- ''' </summary>
- ''' <returns></returns>
- ''' <remarks></remarks>
- Function GetCurrencyCode() As String
- ''' <summary>
- ''' Get the monetary value.
- ''' </summary>
- ''' <value></value>
- ''' <returns></returns>
- ''' <remarks></remarks>
- Property Value As Decimal
- ''' <summary>
- ''' Get a culture invariant number representation of the value.
- ''' </summary>
- ''' <value></value>
- ''' <returns></returns>
- ''' <remarks></remarks>
- ReadOnly Property InvariantString As String
- End Interface
- End Namespace
Advertisement
Add Comment
Please, Sign In to add comment