deebug

ICurrency.vb

Jul 12th, 2011
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Namespace Sitesource.Currency
  2.     ''' <summary>
  3.    ''' Currency interface.
  4.    ''' </summary>
  5.    ''' <remarks></remarks>
  6.    Public Interface ICurrency
  7.         ''' <summary>
  8.        ''' Get the currency symbol.
  9.        ''' </summary>
  10.        ''' <returns></returns>
  11.        ''' <remarks></remarks>
  12.        Function GetCurrencySymbol() As String
  13.         ''' <summary>
  14.        ''' Get the currency code.
  15.        ''' </summary>
  16.        ''' <returns></returns>
  17.        ''' <remarks></remarks>
  18.        Function GetCurrencyCode() As String
  19.         ''' <summary>
  20.        ''' Get the monetary value.
  21.        ''' </summary>
  22.        ''' <value></value>
  23.        ''' <returns></returns>
  24.        ''' <remarks></remarks>
  25.        Property Value As Decimal
  26.         ''' <summary>
  27.        ''' Get a culture invariant number representation of the value.
  28.        ''' </summary>
  29.        ''' <value></value>
  30.        ''' <returns></returns>
  31.        ''' <remarks></remarks>
  32.        ReadOnly Property InvariantString As String
  33.     End Interface
  34. End Namespace
Advertisement
Add Comment
Please, Sign In to add comment