-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDecimalFormat.xml
More file actions
3357 lines (3338 loc) · 242 KB
/
Copy pathDecimalFormat.xml
File metadata and controls
3357 lines (3338 loc) · 242 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="DecimalFormat" FullName="Android.Icu.Text.DecimalFormat">
<TypeSignature Language="C#" Value="public class DecimalFormat : Android.Icu.Text.NumberFormat" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit DecimalFormat extends Android.Icu.Text.NumberFormat" />
<TypeSignature Language="DocId" Value="T:Android.Icu.Text.DecimalFormat" />
<TypeSignature Language="F#" Value="type DecimalFormat = class
 inherit NumberFormat" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Android.Icu.Text.NumberFormat</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/icu/text/DecimalFormat", ApiSince=24, DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/icu/text/DecimalFormat", ApiSince=24, DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.NullableContext(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.NullableContext(2)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary><strong>[icu enhancement]</strong> ICU's replacement for <c>java.text.DecimalFormat</c>.</summary>
<remarks>
<para><strong>[icu enhancement]</strong> ICU's replacement for <c>java.text.DecimalFormat</c>.&nbsp;Methods, fields, and other functionality specific to ICU are labeled '<strong>[icu]</strong>'.</para>
<para><strong>IMPORTANT:</strong> New users are strongly encouraged to see if
<c>NumberFormatter</c> fits their use case. Although not deprecated, this
class, DecimalFormat, is only provided for java.text.DecimalFormat compatibility.
<hr>
<c>DecimalFormat</c> is the primary
concrete subclass of <c>NumberFormat</c>. It has a variety of features designed to make it
possible to parse and format numbers in any locale, including support for Western, Arabic, or
Indic digits. It supports different flavors of numbers, including integers ("123"), fixed-point
numbers ("123.4"), scientific notation ("1.23E4"), percentages ("12%"), and currency amounts
("$123.00", "USD123.00", "123.00 US dollars"). All of these flavors can be easily localized.</para>
<para>To obtain a number formatter for a specific locale (including the default locale), call one of
NumberFormat's factory methods such as <c>NumberFormat#getInstance</c>. Do not call
DecimalFormat constructors directly unless you know what you are doing.</para>
<para>DecimalFormat aims to comply with the specification <see href="http://unicode.org/reports/tr35/tr35-numbers.html#Number_Format_Patterns">UTS #35</see>. Read
the specification for more information on how all the properties in DecimalFormat fit together.</para>
<para><strong>NOTE:</strong> Starting in ICU 60, there is a new set of APIs for localized number
formatting that are designed to be an improvement over DecimalFormat. New users are discouraged
from using DecimalFormat. For more information, see the package android.icu.number.
<h3>Example Usage</h3></para>
<para>Customize settings on a DecimalFormat instance from the NumberFormat factory:
<blockquote></para>
<code lang="text/java">NumberFormat f = NumberFormat.getInstance(loc);
if (f instanceof DecimalFormat) {
((DecimalFormat) f).setDecimalSeparatorAlwaysShown(true);
((DecimalFormat) f).setMinimumGroupingDigits(2);
}
</code>
<para></blockquote></para>
<para>Quick and dirty print out a number using the localized number, currency, and percent format
for each locale:
<blockquote></para>
<code lang="text/java">for (ULocale uloc : ULocale.getAvailableLocales()) {
System.out.print(uloc + ":\t");
System.out.print(NumberFormat.getInstance(uloc).format(1.23));
System.out.print("\t");
System.out.print(NumberFormat.getCurrencyInstance(uloc).format(1.23));
System.out.print("\t");
System.out.print(NumberFormat.getPercentInstance(uloc).format(1.23));
System.out.println();
}
</code>
<para></blockquote>
<h3>Properties and Symbols</h3></para>
<para>A DecimalFormat object encapsulates a set of <em>properties</em> and a set of
<em>symbols</em>. Grouping size, rounding mode, and affixes are examples of properties. Locale
digits and the characters used for grouping and decimal separators are examples of symbols.</para>
<para>To set a custom set of symbols, use <c>#setDecimalFormatSymbols</c>. Use the various other
setters in this class to set custom values for the properties.
<h3>Rounding</h3></para>
<para>DecimalFormat provides three main strategies to specify the position at which numbers should
be rounded:
<ol>
<li><strong>Magnitude:</strong> Display a fixed number of fraction digits; this is the most
common form.
<li><strong>Increment:</strong> Round numbers to the closest multiple of a certain increment,
such as 0.05. This is common in currencies.
<li><strong>Significant Digits:</strong> Round numbers such that a fixed number of nonzero
digits are shown. This is most common in scientific notation.
</ol></para>
<para>It is not possible to specify more than one rounding strategy. For example, setting a rounding
increment in conjunction with significant digits results in undefined behavior.</para>
<para>It is also possible to specify the <em>rounding mode</em> to use. The default rounding mode is
"half even", which rounds numbers to their closest increment, with ties broken in favor of
trailing numbers being even. For more information, see <c>#setRoundingMode</c> and <see href="https://unicode-org.github.io/icu/userguide/format_parse/numbers/rounding-modes">the ICU
User Guide</see>.
<h3>Pattern Strings</h3></para>
<para>A <em>pattern string</em> is a way to serialize some of the available properties for decimal
formatting. However, not all properties are capable of being serialized into a pattern string;
see <c>#applyPattern</c> for more information.</para>
<para>Most users should not need to interface with pattern strings directly.</para>
<para>ICU DecimalFormat aims to follow the specification for pattern strings in <see href="http://unicode.org/reports/tr35/tr35-numbers.html#Number_Format_Patterns">UTS #35</see>.
Refer to that specification for more information on pattern string syntax.
<h4>Pattern String BNF</h4>
The following BNF is used when parsing the pattern string into property values:</para>
<code lang="text/java">pattern := subpattern (';' subpattern)?
subpattern := prefix? number exponent? suffix?
number := (integer ('.' fraction)?) | sigDigits
prefix := '&#92;u0000'..'&#92;uFFFD' - specialCharacters
suffix := '&#92;u0000'..'&#92;uFFFD' - specialCharacters
integer := '#'* '0'* '0'
fraction := '0'* '#'*
sigDigits := '#'* '@' '@'* '#'*
exponent := 'E' '+'? '0'* '0'
padSpec := '*' padChar
padChar := '&#92;u0000'..'&#92;uFFFD' - quote
&#32;
Notation:
X* 0 or more instances of X
X? 0 or 1 instances of X
X|Y either X or Y
C..D any character from C up to D, inclusive
S-T characters in S, except those in T
</code>
<para>The first subpattern is for positive numbers. The second (optional) subpattern is for negative
numbers.</para>
<para>Not indicated in the BNF syntax above:
<ul>
<li>The grouping separator ',' can occur inside the integer and sigDigits elements, between any
two pattern characters of that element, as long as the integer or sigDigits element is not
followed by the exponent element.
<li>Two grouping intervals are recognized: That between the decimal point and the first
grouping symbol, and that between the first and second grouping symbols. These intervals
are identical in most locales, but in some locales they differ. For example, the pattern
&quot;#,##,###&quot; formats the number 123456789 as &quot;12,34,56,789&quot;.
<li>The pad specifier <c>padSpec</c> may appear before the prefix, after the prefix,
before the suffix, after the suffix, or not at all.
<li>In place of '0', the digits '1' through '9' may be used to indicate a rounding increment.
</ul>
<h3>Parsing</h3></para>
<para>DecimalFormat aims to be able to parse anything that it can output as a formatted string.</para>
<para>There are two primary parse modes: <em>lenient</em> and <em>strict</em>. Lenient mode should
be used if the goal is to parse user input to a number; strict mode should be used if the goal is
validation. The default is lenient mode. For more information, see <c>#setParseStrict</c>.</para>
<para>
<c>DecimalFormat</c> parses all Unicode characters that represent decimal digits, as
defined by <c>UCharacter#digit</c>. In addition, <c>DecimalFormat</c> also recognizes as
digits the ten consecutive characters starting with the localized zero digit defined in the
<c>DecimalFormatSymbols</c> object. During formatting, the <c>DecimalFormatSymbols</c>-based
digits are output.</para>
<para>Grouping separators are ignored in lenient mode (default). In strict mode, grouping separators
must match the locale-specified grouping sizes.</para>
<para>When using <c>#parseCurrency</c>, all currencies are accepted, not just the currency
currently set in the formatter. In addition, the formatter is able to parse every currency style
format for a particular locale no matter which style the formatter is constructed with. For
example, a formatter instance gotten from NumberFormat.getInstance(ULocale,
NumberFormat.CURRENCYSTYLE) can parse both "USD1.00" and "3.00 US dollars".</para>
<para>Whitespace characters (lenient mode) and control characters (lenient and strict mode),
collectively called "ignorables", do not need to match in identity or quantity between the
pattern string and the input string. For example, the pattern "# %" matches "35 %" (with a single
space), "35%" (with no space), "35&nbsp;%" (with a non-breaking space), and "35&nbsp; %" (with
multiple spaces). Arbitrary ignorables are also allowed at boundaries between the parts of the
number: prefix, number, exponent separator, and suffix. Ignorable whitespace characters are those
having the Unicode "blank" property for regular expressions, defined in UTS #18 Annex C, which is
"horizontal" whitespace, like spaces and tabs, but not "vertical" whitespace, like line breaks.
Ignorable control characters are those in the Unicode set [:Default_Ignorable_Code_Point:].</para>
<para>If <c>#parse(String, ParsePosition)</c> fails to parse a string, it returns <c>null</c>
and leaves the parse position unchanged. The convenience method <c>#parse(String)</c> indicates
parse failure by throwing a <c>java.text.ParseException</c>.</para>
<para>Under the hood, a state table parsing engine is used. To debug a parsing failure during
development, use the following pattern to print details about the state table transitions:</para>
<code lang="text/java">android.icu.impl.number.Parse.DEBUGGING = true;
df.parse("123.45", ppos);
android.icu.impl.number.Parse.DEBUGGING = false;
</code>
<para><h3>Thread Safety and Best Practices</h3></para>
<para>Starting with ICU 59, instances of DecimalFormat are thread-safe.</para>
<para>Under the hood, DecimalFormat maintains an immutable formatter object that is rebuilt whenever
any of the property setters are called. It is therefore best practice to call property setters
only during construction and not when formatting numbers online.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public DecimalFormat ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.DecimalFormat.#ctor" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "()V", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "()V", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters />
<Docs>
<summary>Creates a DecimalFormat based on the number pattern and symbols for the default locale.</summary>
<remarks>
<para>Creates a DecimalFormat based on the number pattern and symbols for the default locale. This is
a convenient way to obtain a DecimalFormat instance when internationalization is not the main
concern.</para>
<para>Most users should call the factory methods on NumberFormat, such as <c>NumberFormat#getNumberInstance</c>, which return localized formatter objects, instead of the
DecimalFormat constructors.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#DecimalFormat()" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.DecimalFormat()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public DecimalFormat (string? pattern);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string pattern) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.DecimalFormat.#ctor(System.String)" />
<MemberSignature Language="F#" Value="new Android.Icu.Text.DecimalFormat : string -> Android.Icu.Text.DecimalFormat" Usage="new Android.Icu.Text.DecimalFormat pattern" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="pattern" Type="System.String" />
</Parameters>
<Docs>
<param name="pattern">A pattern string such as "#,##0.00" conforming to <see href="http://unicode.org/reports/tr35/tr35-numbers.html#Number_Format_Patterns">UTS
#35</see>.</param>
<summary>Creates a DecimalFormat based on the given pattern, using symbols for the default locale.</summary>
<remarks>
<para>Creates a DecimalFormat based on the given pattern, using symbols for the default locale. This
is a convenient way to obtain a DecimalFormat instance when internationalization is not the
main concern.</para>
<para>Most users should call the factory methods on NumberFormat, such as <c>NumberFormat#getNumberInstance</c>, which return localized formatter objects, instead of the
DecimalFormat constructors.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#DecimalFormat(java.lang.String)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.DecimalFormat(java.lang.String)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected DecimalFormat (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(native int javaReference, valuetype Android.Runtime.JniHandleOwnership transfer) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.DecimalFormat.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.Icu.Text.DecimalFormat : nativeint * Android.Runtime.JniHandleOwnership -> Android.Icu.Text.DecimalFormat" Usage="new Android.Icu.Text.DecimalFormat (javaReference, transfer)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="javaReference" Type="System.IntPtr" />
<Parameter Name="transfer" Type="Android.Runtime.JniHandleOwnership" />
</Parameters>
<Docs>
<param name="javaReference">To be added.</param>
<param name="transfer">To be added.</param>
<summary>To be added.</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public DecimalFormat (string? pattern, Android.Icu.Text.DecimalFormatSymbols? symbols);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string pattern, class Android.Icu.Text.DecimalFormatSymbols symbols) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.DecimalFormat.#ctor(System.String,Android.Icu.Text.DecimalFormatSymbols)" />
<MemberSignature Language="F#" Value="new Android.Icu.Text.DecimalFormat : string * Android.Icu.Text.DecimalFormatSymbols -> Android.Icu.Text.DecimalFormat" Usage="new Android.Icu.Text.DecimalFormat (pattern, symbols)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Landroid/icu/text/DecimalFormatSymbols;)V", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Landroid/icu/text/DecimalFormatSymbols;)V", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="pattern" Type="System.String" />
<Parameter Name="symbols" Type="Android.Icu.Text.DecimalFormatSymbols" />
</Parameters>
<Docs>
<param name="pattern">A pattern string such as "#,##0.00" conforming to <see href="http://unicode.org/reports/tr35/tr35-numbers.html#Number_Format_Patterns">UTS
#35</see>.</param>
<param name="symbols">The set of symbols to be used.</param>
<summary>Creates a DecimalFormat based on the given pattern and symbols.</summary>
<remarks>
<para>Creates a DecimalFormat based on the given pattern and symbols. Use this constructor if you
want complete control over the behavior of the formatter.</para>
<para>Most users should call the factory methods on NumberFormat, such as <c>NumberFormat#getNumberInstance</c>, which return localized formatter objects, instead of the
DecimalFormat constructors.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#DecimalFormat(java.lang.String,%20android.icu.text.DecimalFormatSymbols)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.DecimalFormat(java.lang.String, android.icu.text.DecimalFormatSymbols)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public DecimalFormat (string? pattern, Android.Icu.Text.DecimalFormatSymbols? symbols, Android.Icu.Text.CurrencyPluralInfo? infoInput, Android.Icu.Text.NumberFormatStyles style);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string pattern, class Android.Icu.Text.DecimalFormatSymbols symbols, class Android.Icu.Text.CurrencyPluralInfo infoInput, valuetype Android.Icu.Text.NumberFormatStyles style) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.DecimalFormat.#ctor(System.String,Android.Icu.Text.DecimalFormatSymbols,Android.Icu.Text.CurrencyPluralInfo,Android.Icu.Text.NumberFormatStyles)" />
<MemberSignature Language="F#" Value="new Android.Icu.Text.DecimalFormat : string * Android.Icu.Text.DecimalFormatSymbols * Android.Icu.Text.CurrencyPluralInfo * Android.Icu.Text.NumberFormatStyles -> Android.Icu.Text.DecimalFormat" Usage="new Android.Icu.Text.DecimalFormat (pattern, symbols, infoInput, style)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Landroid/icu/text/DecimalFormatSymbols;Landroid/icu/text/CurrencyPluralInfo;I)V", "", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Landroid/icu/text/DecimalFormatSymbols;Landroid/icu/text/CurrencyPluralInfo;I)V", "", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="pattern" Type="System.String" />
<Parameter Name="symbols" Type="Android.Icu.Text.DecimalFormatSymbols" />
<Parameter Name="infoInput" Type="Android.Icu.Text.CurrencyPluralInfo" />
<Parameter Name="style" Type="Android.Icu.Text.NumberFormatStyles">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="pattern">a non-localized pattern string</param>
<param name="symbols">the set of symbols to be used</param>
<param name="infoInput">the information used for currency plural format, including currency plural
patterns and plural rules.</param>
<param name="style">the decimal formatting style, it is one of the following values:
NumberFormat.NUMBERSTYLE; NumberFormat.CURRENCYSTYLE; NumberFormat.PERCENTSTYLE;
NumberFormat.SCIENTIFICSTYLE; NumberFormat.INTEGERSTYLE; NumberFormat.ISOCURRENCYSTYLE;
NumberFormat.PLURALCURRENCYSTYLE;</param>
<summary>Creates a DecimalFormat based on the given pattern and symbols, with additional control over
the behavior of currency.</summary>
<remarks>
<para>Creates a DecimalFormat based on the given pattern and symbols, with additional control over
the behavior of currency. The style argument determines whether currency rounding rules should
override the pattern, and the <c>CurrencyPluralInfo</c> object is used for customizing the
plural forms used for currency long names.</para>
<para>Most users should call the factory methods on NumberFormat, such as <c>NumberFormat#getNumberInstance</c>, which return localized formatter objects, instead of the
DecimalFormat constructors.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#DecimalFormat(java.lang.String,%20android.icu.text.DecimalFormatSymbols,%20android.icu.text.CurrencyPluralInfo,%20int)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.DecimalFormat(java.lang.String, android.icu.text.DecimalFormatSymbols, android.icu.text.CurrencyPluralInfo, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ApplyLocalizedPattern">
<MemberSignature Language="C#" Value="public virtual void ApplyLocalizedPattern (string? localizedPattern);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void ApplyLocalizedPattern(string localizedPattern) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.DecimalFormat.ApplyLocalizedPattern(System.String)" />
<MemberSignature Language="F#" Value="abstract member ApplyLocalizedPattern : string -> unit
override this.ApplyLocalizedPattern : string -> unit" Usage="decimalFormat.ApplyLocalizedPattern localizedPattern" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("applyLocalizedPattern", "(Ljava/lang/String;)V", "GetApplyLocalizedPattern_Ljava_lang_String_Handler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("applyLocalizedPattern", "(Ljava/lang/String;)V", "GetApplyLocalizedPattern_Ljava_lang_String_Handler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="localizedPattern" Type="System.String" />
</Parameters>
<Docs>
<param name="localizedPattern">The pattern string in localized notation.</param>
<summary>Converts the given string to standard notation and then parses it using <c>#applyPattern</c>.</summary>
<remarks>
<para>Converts the given string to standard notation and then parses it using <c>#applyPattern</c>.
This method is provided for backwards compatibility and should not be used in new projects.</para>
<para>Localized notation means that instead of using generic placeholders in the pattern, you use
the corresponding locale-specific characters instead. For example, in locale <em>fr-FR</em>,
the period in the pattern "0.000" means "decimal" in standard notation (as it does in every
other locale), but it means "grouping" in localized notation.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#applyLocalizedPattern(java.lang.String)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.applyLocalizedPattern(java.lang.String)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ApplyPattern">
<MemberSignature Language="C#" Value="public virtual void ApplyPattern (string? pattern);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void ApplyPattern(string pattern) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.DecimalFormat.ApplyPattern(System.String)" />
<MemberSignature Language="F#" Value="abstract member ApplyPattern : string -> unit
override this.ApplyPattern : string -> unit" Usage="decimalFormat.ApplyPattern pattern" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("applyPattern", "(Ljava/lang/String;)V", "GetApplyPattern_Ljava_lang_String_Handler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("applyPattern", "(Ljava/lang/String;)V", "GetApplyPattern_Ljava_lang_String_Handler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="pattern" Type="System.String" />
</Parameters>
<Docs>
<param name="pattern">To be added.</param>
<summary>Parses the given pattern string and overwrites the settings specified in the pattern string.</summary>
<remarks>
<para>Parses the given pattern string and overwrites the settings specified in the pattern string.
The properties corresponding to the following setters are overwritten, either with their
default values or with the value specified in the pattern string:
<ol>
<li><c>#setDecimalSeparatorAlwaysShown</c><li><c>#setExponentSignAlwaysShown</c><li><c>#setFormatWidth</c><li><c>#setGroupingSize</c><li><c>#setMultiplier</c> (percent/permille)
<li><c>#setMaximumFractionDigits</c><li><c>#setMaximumIntegerDigits</c><li><c>#setMaximumSignificantDigits</c><li><c>#setMinimumExponentDigits</c><li><c>#setMinimumFractionDigits</c><li><c>#setMinimumIntegerDigits</c><li><c>#setMinimumSignificantDigits</c><li><c>#setPadPosition</c><li><c>#setPadCharacter</c><li><c>#setRoundingIncrement</c><li><c>#setSecondaryGroupingSize</c></ol>
All other settings remain untouched.</para>
<para>For more information on pattern strings, see <see href="http://unicode.org/reports/tr35/tr35-numbers.html#Number_Format_Patterns">UTS #35</see>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#applyPattern(java.lang.String)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.applyPattern(java.lang.String)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="AreSignificantDigitsUsed">
<MemberSignature Language="C#" Value="public virtual bool AreSignificantDigitsUsed ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool AreSignificantDigitsUsed() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.DecimalFormat.AreSignificantDigitsUsed" />
<MemberSignature Language="F#" Value="abstract member AreSignificantDigitsUsed : unit -> bool
override this.AreSignificantDigitsUsed : unit -> bool" Usage="decimalFormat.AreSignificantDigitsUsed " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("areSignificantDigitsUsed", "()Z", "GetAreSignificantDigitsUsedHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("areSignificantDigitsUsed", "()Z", "GetAreSignificantDigitsUsedHandler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary><strong>[icu]</strong> Returns whether significant digits are being used in rounding.</summary>
<returns>To be added.</returns>
<remarks>
<para><strong>[icu]</strong> Returns whether significant digits are being used in rounding.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#areSignificantDigitsUsed()" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.areSignificantDigitsUsed()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="CurrencyPluralInfo">
<MemberSignature Language="C#" Value="public virtual Android.Icu.Text.CurrencyPluralInfo? CurrencyPluralInfo { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Icu.Text.CurrencyPluralInfo CurrencyPluralInfo" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.DecimalFormat.CurrencyPluralInfo" />
<MemberSignature Language="F#" Value="member this.CurrencyPluralInfo : Android.Icu.Text.CurrencyPluralInfo with get, set" Usage="Android.Icu.Text.DecimalFormat.CurrencyPluralInfo" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getCurrencyPluralInfo", "()Landroid/icu/text/CurrencyPluralInfo;", "GetGetCurrencyPluralInfoHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getCurrencyPluralInfo", "()Landroid/icu/text/CurrencyPluralInfo;", "GetGetCurrencyPluralInfoHandler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setCurrencyPluralInfo", "(Landroid/icu/text/CurrencyPluralInfo;)V", "GetSetCurrencyPluralInfo_Landroid_icu_text_CurrencyPluralInfo_Handler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setCurrencyPluralInfo", "(Landroid/icu/text/CurrencyPluralInfo;)V", "GetSetCurrencyPluralInfo_Landroid_icu_text_CurrencyPluralInfo_Handler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Text.CurrencyPluralInfo</ReturnType>
</ReturnValue>
<Docs>
<param name="newInfo">The CurrencyPluralInfo to use when printing currency long names.</param>
<summary><strong>[icu]</strong> Returns the current instance of CurrencyPluralInfo. -or- <strong>[icu]</strong> Sets a custom instance of CurrencyPluralInfo.</summary>
<value>To be added.</value>
<remarks>
<para>Property getter documentation:</para>
<para><strong>[icu]</strong> Returns the current instance of CurrencyPluralInfo.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#getCurrencyPluralInfo()" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.getCurrencyPluralInfo()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para><strong>[icu]</strong> Sets a custom instance of CurrencyPluralInfo. CurrencyPluralInfo generates pattern
strings for printing currency long names.</para>
<para><strong>Most users should not call this method directly.</strong> You should instead create
your formatter via <c>NumberFormat.getInstance(NumberFormat.PLURALCURRENCYSTYLE)</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#setCurrencyPluralInfo(android.icu.text.CurrencyPluralInfo)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.setCurrencyPluralInfo(android.icu.text.CurrencyPluralInfo)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="CurrencyUsage">
<MemberSignature Language="C#" Value="public virtual Android.Icu.Util.Currency.CurrencyUsage? CurrencyUsage { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Icu.Util.Currency/CurrencyUsage CurrencyUsage" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.DecimalFormat.CurrencyUsage" />
<MemberSignature Language="F#" Value="member this.CurrencyUsage : Android.Icu.Util.Currency.CurrencyUsage with get, set" Usage="Android.Icu.Text.DecimalFormat.CurrencyUsage" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getCurrencyUsage", "()Landroid/icu/util/Currency$CurrencyUsage;", "GetGetCurrencyUsageHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getCurrencyUsage", "()Landroid/icu/util/Currency$CurrencyUsage;", "GetGetCurrencyUsageHandler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setCurrencyUsage", "(Landroid/icu/util/Currency$CurrencyUsage;)V", "GetSetCurrencyUsage_Landroid_icu_util_Currency_CurrencyUsage_Handler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setCurrencyUsage", "(Landroid/icu/util/Currency$CurrencyUsage;)V", "GetSetCurrencyUsage_Landroid_icu_util_Currency_CurrencyUsage_Handler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Util.Currency+CurrencyUsage</ReturnType>
</ReturnValue>
<Docs>
<summary>[icu] Returns the strategy for rounding currency amounts.</summary>
<value>To be added.</value>
<remarks>
<para>[icu] Returns the strategy for rounding currency amounts.</para>
<para><format type="text/html"><a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#getCurrencyUsage()" title="Reference documentation">Android reference for <code>android.icu.text.DecimalFormat.getCurrencyUsage</code>.</a></format></para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="DecimalFormatSymbols">
<MemberSignature Language="C#" Value="public virtual Android.Icu.Text.DecimalFormatSymbols? DecimalFormatSymbols { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Icu.Text.DecimalFormatSymbols DecimalFormatSymbols" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.DecimalFormat.DecimalFormatSymbols" />
<MemberSignature Language="F#" Value="member this.DecimalFormatSymbols : Android.Icu.Text.DecimalFormatSymbols with get, set" Usage="Android.Icu.Text.DecimalFormat.DecimalFormatSymbols" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getDecimalFormatSymbols", "()Landroid/icu/text/DecimalFormatSymbols;", "GetGetDecimalFormatSymbolsHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getDecimalFormatSymbols", "()Landroid/icu/text/DecimalFormatSymbols;", "GetGetDecimalFormatSymbolsHandler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setDecimalFormatSymbols", "(Landroid/icu/text/DecimalFormatSymbols;)V", "GetSetDecimalFormatSymbols_Landroid_icu_text_DecimalFormatSymbols_Handler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setDecimalFormatSymbols", "(Landroid/icu/text/DecimalFormatSymbols;)V", "GetSetDecimalFormatSymbols_Landroid_icu_text_DecimalFormatSymbols_Handler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Icu.Text.DecimalFormatSymbols</ReturnType>
</ReturnValue>
<Docs>
<param name="newSymbols">desired DecimalFormatSymbols</param>
<summary>Returns a copy of the decimal format symbols used by this formatter. -or- Sets the decimal format symbols used by this formatter.</summary>
<value>desired DecimalFormatSymbols</value>
<remarks>
<para>Property getter documentation:</para>
<para>Returns a copy of the decimal format symbols used by this formatter.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#getDecimalFormatSymbols()" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.getDecimalFormatSymbols()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>Sets the decimal format symbols used by this formatter. The formatter uses a copy of the
provided symbols.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#setDecimalFormatSymbols(android.icu.text.DecimalFormatSymbols)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.setDecimalFormatSymbols(android.icu.text.DecimalFormatSymbols)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="DecimalPatternMatchRequired">
<MemberSignature Language="C#" Value="public virtual bool DecimalPatternMatchRequired { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool DecimalPatternMatchRequired" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.DecimalFormat.DecimalPatternMatchRequired" />
<MemberSignature Language="F#" Value="member this.DecimalPatternMatchRequired : bool with get, set" Usage="Android.Icu.Text.DecimalFormat.DecimalPatternMatchRequired" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("isDecimalPatternMatchRequired", "()Z", "GetIsDecimalPatternMatchRequiredHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("isDecimalPatternMatchRequired", "()Z", "GetIsDecimalPatternMatchRequiredHandler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setDecimalPatternMatchRequired", "(Z)V", "GetSetDecimalPatternMatchRequired_ZHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setDecimalPatternMatchRequired", "(Z)V", "GetSetDecimalPatternMatchRequired_ZHandler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<param name="value">true to either require or forbid the decimal point according to the pattern; false
to disable this feature.</param>
<summary><strong>[icu]</strong> Returns whether the presence of a decimal point must match the pattern. -or- <strong>[icu]</strong> <strong>Parsing:</strong> This method is used to either <em>require</em> or
<em>forbid</em> the presence of a decimal point in the string being parsed (disabled by
default).</summary>
<value>To be added.</value>
<remarks>
<para>Property getter documentation:</para>
<para><strong>[icu]</strong> Returns whether the presence of a decimal point must match the pattern.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#isDecimalPatternMatchRequired()" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.isDecimalPatternMatchRequired()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para><strong>[icu]</strong> <strong>Parsing:</strong> This method is used to either <em>require</em> or
<em>forbid</em> the presence of a decimal point in the string being parsed (disabled by
default). This feature was designed to be an extra layer of strictness on top of strict
parsing, although it can be used in either lenient mode or strict mode.</para>
<para>To <em>require</em> a decimal point, call this method in combination with either a pattern
containing a decimal point or with <c>#setDecimalSeparatorAlwaysShown</c>.</para>
<code lang="text/java">// Require a decimal point in the string being parsed:
df.applyPattern("#.");
df.setDecimalPatternMatchRequired(true);
// Alternatively:
df.setDecimalSeparatorAlwaysShown(true);
df.setDecimalPatternMatchRequired(true);
</code>
<para>To <em>forbid</em> a decimal point, call this method in combination with a pattern containing
no decimal point. Alternatively, use <c>#setParseIntegerOnly</c> for the same behavior without
depending on the contents of the pattern string.</para>
<code lang="text/java">// Forbid a decimal point in the string being parsed:
df.applyPattern("#");
df.setDecimalPatternMatchRequired(true);
</code>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#setDecimalPatternMatchRequired(boolean)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.setDecimalPatternMatchRequired(boolean)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="DecimalSeparatorAlwaysShown">
<MemberSignature Language="C#" Value="public virtual bool DecimalSeparatorAlwaysShown { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool DecimalSeparatorAlwaysShown" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.DecimalFormat.DecimalSeparatorAlwaysShown" />
<MemberSignature Language="F#" Value="member this.DecimalSeparatorAlwaysShown : bool with get, set" Usage="Android.Icu.Text.DecimalFormat.DecimalSeparatorAlwaysShown" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("isDecimalSeparatorAlwaysShown", "()Z", "GetIsDecimalSeparatorAlwaysShownHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("isDecimalSeparatorAlwaysShown", "()Z", "GetIsDecimalSeparatorAlwaysShownHandler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setDecimalSeparatorAlwaysShown", "(Z)V", "GetSetDecimalSeparatorAlwaysShown_ZHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setDecimalSeparatorAlwaysShown", "(Z)V", "GetSetDecimalSeparatorAlwaysShown_ZHandler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<param name="value">true to always show the decimal separator; false to show it only when there is a
fraction part of the number.</param>
<summary>Returns whether the decimal separator is shown on integers. -or- <strong>Separators:</strong> Sets whether the decimal separator (a period in <em>en-US</em>) is
shown on integers.</summary>
<value>To be added.</value>
<remarks>
<para>Property getter documentation:</para>
<para>Returns whether the decimal separator is shown on integers.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#isDecimalSeparatorAlwaysShown()" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.isDecimalSeparatorAlwaysShown()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para><strong>Separators:</strong> Sets whether the decimal separator (a period in <em>en-US</em>) is
shown on integers. For example, if this setting is turned on, formatting 123 will result in
"123." with the decimal separator.</para>
<para>This setting can be specified in the pattern for integer formats: "#,##0." is an example.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#setDecimalSeparatorAlwaysShown(boolean)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.setDecimalSeparatorAlwaysShown(boolean)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ExponentSignAlwaysShown">
<MemberSignature Language="C#" Value="public virtual bool ExponentSignAlwaysShown { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool ExponentSignAlwaysShown" />
<MemberSignature Language="DocId" Value="P:Android.Icu.Text.DecimalFormat.ExponentSignAlwaysShown" />
<MemberSignature Language="F#" Value="member this.ExponentSignAlwaysShown : bool with get, set" Usage="Android.Icu.Text.DecimalFormat.ExponentSignAlwaysShown" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("isExponentSignAlwaysShown", "()Z", "GetIsExponentSignAlwaysShownHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("isExponentSignAlwaysShown", "()Z", "GetIsExponentSignAlwaysShownHandler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setExponentSignAlwaysShown", "(Z)V", "GetSetExponentSignAlwaysShown_ZHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setExponentSignAlwaysShown", "(Z)V", "GetSetExponentSignAlwaysShown_ZHandler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<param name="expSignAlways">true to always shown the sign in the exponent; false to show it for
negatives but not positives.</param>
<summary><strong>[icu]</strong> Returns whether the sign (plus or minus) is always printed in scientific notation. -or- <strong>[icu]</strong> <strong>Scientific Notation:</strong> Sets whether the sign (plus or minus) is always to
be shown in the exponent in scientific notation.</summary>
<value>To be added.</value>
<remarks>
<para>Property getter documentation:</para>
<para><strong>[icu]</strong> Returns whether the sign (plus or minus) is always printed in scientific notation.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#isExponentSignAlwaysShown()" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.isExponentSignAlwaysShown()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para><strong>[icu]</strong> <strong>Scientific Notation:</strong> Sets whether the sign (plus or minus) is always to
be shown in the exponent in scientific notation. For example, if this setting is enabled, the
number 123000 will be printed as "1.23E+5" in locale <em>en-US</em>. The number 0.0000123 will
always be printed as "1.23E-5" in locale <em>en-US</em> whether or not this setting is enabled.</para>
<para>This setting corresponds to the '+' in a pattern such as "0.00E+0".</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#setExponentSignAlwaysShown(boolean)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.setExponentSignAlwaysShown(boolean)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="Format">
<MemberSignature Language="C#" Value="public override Java.Lang.StringBuffer? Format (Android.Icu.Math.BigDecimal? number, Java.Lang.StringBuffer? result, Java.Text.FieldPosition? fieldPosition);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance class Java.Lang.StringBuffer Format(class Android.Icu.Math.BigDecimal number, class Java.Lang.StringBuffer result, class Java.Text.FieldPosition fieldPosition) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.DecimalFormat.Format(Android.Icu.Math.BigDecimal,Java.Lang.StringBuffer,Java.Text.FieldPosition)" />
<MemberSignature Language="F#" Value="override this.Format : Android.Icu.Math.BigDecimal * Java.Lang.StringBuffer * Java.Text.FieldPosition -> Java.Lang.StringBuffer" Usage="decimalFormat.Format (number, result, fieldPosition)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("format", "(Landroid/icu/math/BigDecimal;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;", "GetFormat_Landroid_icu_math_BigDecimal_Ljava_lang_StringBuffer_Ljava_text_FieldPosition_Handler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("format", "(Landroid/icu/math/BigDecimal;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;", "GetFormat_Landroid_icu_math_BigDecimal_Ljava_lang_StringBuffer_Ljava_text_FieldPosition_Handler", ApiSince=24)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Lang.StringBuffer</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="number" Type="Android.Icu.Math.BigDecimal" />
<Parameter Name="result" Type="Java.Lang.StringBuffer" />
<Parameter Name="fieldPosition" Type="Java.Text.FieldPosition" />
</Parameters>
<Docs>
<param name="number">To be added.</param>
<param name="result">To be added.</param>
<param name="fieldPosition">To be added.</param>
<summary>[icu] Formats an ICU BigDecimal.</summary>
<returns>To be added.</returns>
<remarks>
<para>[icu] Formats an ICU BigDecimal. Specialization of format.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/icu/text/DecimalFormat#format(android.icu.math.BigDecimal,%20java.lang.StringBuffer,%20java.text.FieldPosition)" title="Reference documentation">Java documentation for <code>android.icu.text.DecimalFormat.format(android.icu.math.BigDecimal, java.lang.StringBuffer, java.text.FieldPosition)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="Format">
<MemberSignature Language="C#" Value="public override Java.Lang.StringBuffer? Format (Java.Math.BigDecimal? number, Java.Lang.StringBuffer? result, Java.Text.FieldPosition? fieldPosition);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance class Java.Lang.StringBuffer Format(class Java.Math.BigDecimal number, class Java.Lang.StringBuffer result, class Java.Text.FieldPosition fieldPosition) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Icu.Text.DecimalFormat.Format(Java.Math.BigDecimal,Java.Lang.StringBuffer,Java.Text.FieldPosition)" />
<MemberSignature Language="F#" Value="override this.Format : Java.Math.BigDecimal * Java.Lang.StringBuffer * Java.Text.FieldPosition -> Java.Lang.StringBuffer" Usage="decimalFormat.Format (number, result, fieldPosition)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>