C# Class ID3.ID3v2Frames.Price

Provide a class for Price values
Exibir arquivo Open project: jasine/SaveDouban

Protected Properties

Property Type Description
_Currency string
_Value string

Public Methods

Method Description
IsValidCurrency ( string Currency ) : bool
IsValidValue ( string Value ) : bool
Price ( string Currency, string Value ) : System

Create new Price class

ToString ( ) : string

Returns a System.String that represent current Price

Private Methods

Method Description
Price ( FileStreamEx Data, int Length ) : System

Create new price class

Method Details

IsValidCurrency() public static method

public static IsValidCurrency ( string Currency ) : bool
Currency string
return bool

IsValidValue() public static method

public static IsValidValue ( string Value ) : bool
Value string
return bool

Price() public method

Create new Price class
public Price ( string Currency, string Value ) : System
Currency string Currency of price
Value string value of price
return System

ToString() public method

Returns a System.String that represent current Price
public ToString ( ) : string
return string

Property Details

_Currency protected_oe property

protected string _Currency
return string

_Value protected_oe property

protected string _Value
return string