nmoneys 1.5.1.0.20110515 → 1.6.0.0.20110602
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/NMoneys.XML +32 -0
- data/lib/NMoneys.dll +0 -0
- metadata +6 -6
data/lib/NMoneys.XML
CHANGED
@@ -469,6 +469,38 @@
|
|
469
469
|
<remarks>Since all currencies are visited, caches are initialized with all values.</remarks>
|
470
470
|
<returns>List of all currencies defined.</returns>
|
471
471
|
</member>
|
472
|
+
<member name="M:NMoneys.Currency.ParseCode(System.String)">
|
473
|
+
<summary>
|
474
|
+
Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent <see cref="T:NMoneys.CurrencyIsoCode"/>.
|
475
|
+
</summary>
|
476
|
+
<remarks>The <paramref name="isoCode"/> can represent an alphabetic or a numeric currency code.
|
477
|
+
<para>In the case of alphabetic codes, parsing is case-insensitive.</para>
|
478
|
+
<para>Only defined numeric codes can be parsed.</para></remarks>
|
479
|
+
<param name="isoCode">A string containing the name or value to convert.</param>
|
480
|
+
<returns>An object of type <see cref="T:NMoneys.CurrencyIsoCode"/> whose value is represented by value.</returns>
|
481
|
+
<exception cref="T:System.ArgumentNullException"><paramref name="isoCode"/> is null.</exception>
|
482
|
+
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException"><paramref name="isoCode"/> does not represent a defined alphabetic or numeric code.</exception>
|
483
|
+
<seealso cref="M:NMoneys.IsoCodeExtensions.AlphabeticCode(NMoneys.CurrencyIsoCode)"/>
|
484
|
+
<seealso cref="M:NMoneys.IsoCodeExtensions.NumericCode(NMoneys.CurrencyIsoCode)"/>
|
485
|
+
</member>
|
486
|
+
<member name="M:NMoneys.Currency.TryParseCode(System.String,System.Nullable{NMoneys.CurrencyIsoCode}@)">
|
487
|
+
<summary>
|
488
|
+
Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent <see cref="T:NMoneys.CurrencyIsoCode"/>.
|
489
|
+
The return value indicates whether the conversion succeeded.
|
490
|
+
</summary>
|
491
|
+
<remarks>The <paramref name="isoCode"/> can represent an alphabetic or a numeric currency code.
|
492
|
+
<para>In the case of alphabetic codes, parsing is case-insensitive.</para>
|
493
|
+
<para>Only defined numeric codes can be parsed.</para></remarks>
|
494
|
+
<param name="isoCode">A string containing the name or value to convert.</param>
|
495
|
+
<param name="parsed">When this method returns, contains the parsed <see cref="T:NMoneys.CurrencyIsoCode"/> if the parsing succeeded, or is null if the parsing failed.</param>
|
496
|
+
<returns>true if the value <paramref name="isoCode"/> was parsed successfully; otherwise, false.</returns>
|
497
|
+
</member>
|
498
|
+
<member name="M:NMoneys.Currency.ParseCodeArgument(System.String,System.String)">
|
499
|
+
<summary>
|
500
|
+
Used to parse the ISO codes arguments.
|
501
|
+
</summary>
|
502
|
+
<remarks>Is case-insensitive.</remarks>
|
503
|
+
</member>
|
472
504
|
<member name="M:NMoneys.Currency.ToString">
|
473
505
|
<summary>
|
474
506
|
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:NMoneys.Currency"/>.
|
data/lib/NMoneys.dll
CHANGED
Binary file
|
metadata
CHANGED
@@ -4,11 +4,11 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 1
|
7
|
-
-
|
8
|
-
-
|
7
|
+
- 6
|
8
|
+
- 0
|
9
9
|
- 0
|
10
|
-
-
|
11
|
-
version: 1.
|
10
|
+
- 20110602
|
11
|
+
version: 1.6.0.0.20110602
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Daniel Gonzalez Garcia
|
@@ -16,11 +16,11 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-
|
19
|
+
date: 2011-06-02 00:00:00 +02:00
|
20
20
|
default_executable:
|
21
21
|
dependencies: []
|
22
22
|
|
23
|
-
description: NMoneys is an implementation of the Money Value Object to support representing moneys in the currencies defined in the ISO
|
23
|
+
description: NMoneys is an implementation of the Money Value Object to support representing moneys in the currencies defined in the ISO 4217 standard
|
24
24
|
email: nmoneys@googlegroups.com
|
25
25
|
executables: []
|
26
26
|
|