-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathCSharpResources.resx
6603 lines (6574 loc) · 365 KB
/
CSharpResources.resx
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
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="IDS_NULL" xml:space="preserve">
<value><null></value>
</data>
<data name="IDS_ThrowExpression" xml:space="preserve">
<value><throw expression></value>
</data>
<data name="IDS_FeatureSwitchExpression" xml:space="preserve">
<value><switch expression></value>
</data>
<data name="IDS_FeatureLocalFunctionAttributes" xml:space="preserve">
<value>local function attributes</value>
</data>
<data name="IDS_FeatureExternLocalFunctions" xml:space="preserve">
<value>extern local functions</value>
</data>
<data name="IDS_RELATEDERROR" xml:space="preserve">
<value>(Location of symbol related to previous error)</value>
</data>
<data name="IDS_RELATEDWARNING" xml:space="preserve">
<value>(Location of symbol related to previous warning)</value>
</data>
<data name="IDS_XMLIGNORED" xml:space="preserve">
<value><!-- Badly formed XML comment ignored for member "{0}" --></value>
</data>
<data name="IDS_XMLIGNORED2" xml:space="preserve">
<value> Badly formed XML file "{0}" cannot be included </value>
</data>
<data name="IDS_XMLFAILEDINCLUDE" xml:space="preserve">
<value> Failed to insert some or all of included XML </value>
</data>
<data name="IDS_XMLBADINCLUDE" xml:space="preserve">
<value> Include tag is invalid </value>
</data>
<data name="IDS_XMLNOINCLUDE" xml:space="preserve">
<value> No matching elements were found for the following include tag </value>
</data>
<data name="IDS_XMLMISSINGINCLUDEFILE" xml:space="preserve">
<value>Missing file attribute</value>
</data>
<data name="IDS_XMLMISSINGINCLUDEPATH" xml:space="preserve">
<value>Missing path attribute</value>
</data>
<data name="IDS_GlobalNamespace" xml:space="preserve">
<value><global namespace></value>
</data>
<data name="IDS_FeatureGenerics" xml:space="preserve">
<value>generics</value>
</data>
<data name="IDS_FeatureAnonDelegates" xml:space="preserve">
<value>anonymous methods</value>
</data>
<data name="IDS_FeatureModuleAttrLoc" xml:space="preserve">
<value>module as an attribute target specifier</value>
</data>
<data name="IDS_FeatureGlobalNamespace" xml:space="preserve">
<value>namespace alias qualifier</value>
</data>
<data name="IDS_FeatureFixedBuffer" xml:space="preserve">
<value>fixed size buffers</value>
</data>
<data name="IDS_FeaturePragma" xml:space="preserve">
<value>#pragma</value>
</data>
<data name="IDS_FeatureStaticClasses" xml:space="preserve">
<value>static classes</value>
</data>
<data name="IDS_FeatureReadOnlyStructs" xml:space="preserve">
<value>readonly structs</value>
</data>
<data name="IDS_FeaturePartialTypes" xml:space="preserve">
<value>partial types</value>
</data>
<data name="IDS_FeatureAsync" xml:space="preserve">
<value>async function</value>
</data>
<data name="IDS_FeatureSwitchOnBool" xml:space="preserve">
<value>switch on boolean type</value>
</data>
<data name="IDS_MethodGroup" xml:space="preserve">
<value>method group</value>
</data>
<data name="IDS_AnonMethod" xml:space="preserve">
<value>anonymous method</value>
</data>
<data name="IDS_Lambda" xml:space="preserve">
<value>lambda expression</value>
</data>
<data name="IDS_Collection" xml:space="preserve">
<value>collection</value>
</data>
<data name="IDS_Disposable" xml:space="preserve">
<value>disposable</value>
</data>
<data name="IDS_FeaturePropertyAccessorMods" xml:space="preserve">
<value>access modifiers on properties</value>
</data>
<data name="IDS_FeatureExternAlias" xml:space="preserve">
<value>extern alias</value>
</data>
<data name="IDS_FeatureIterators" xml:space="preserve">
<value>iterators</value>
</data>
<data name="IDS_FeatureDefault" xml:space="preserve">
<value>default operator</value>
</data>
<data name="IDS_FeatureAsyncStreams" xml:space="preserve">
<value>async streams</value>
</data>
<data name="IDS_FeatureUnmanagedConstructedTypes" xml:space="preserve">
<value>unmanaged constructed types</value>
</data>
<data name="IDS_FeatureReadOnlyMembers" xml:space="preserve">
<value>readonly members</value>
</data>
<data name="IDS_FeatureDefaultLiteral" xml:space="preserve">
<value>default literal</value>
</data>
<data name="IDS_FeaturePrivateProtected" xml:space="preserve">
<value>private protected</value>
</data>
<data name="IDS_FeatureTupleEquality" xml:space="preserve">
<value>tuple equality</value>
</data>
<data name="IDS_FeatureNullable" xml:space="preserve">
<value>nullable types</value>
</data>
<data name="IDS_FeaturePatternMatching" xml:space="preserve">
<value>pattern matching</value>
</data>
<data name="IDS_FeatureExpressionBodiedAccessor" xml:space="preserve">
<value>expression body property accessor</value>
</data>
<data name="IDS_FeatureExpressionBodiedDeOrConstructor" xml:space="preserve">
<value>expression body constructor and destructor</value>
</data>
<data name="IDS_FeatureThrowExpression" xml:space="preserve">
<value>throw expression</value>
</data>
<data name="IDS_FeatureImplicitArray" xml:space="preserve">
<value>implicitly typed array</value>
</data>
<data name="IDS_FeatureImplicitLocal" xml:space="preserve">
<value>implicitly typed local variable</value>
</data>
<data name="IDS_FeatureAnonymousTypes" xml:space="preserve">
<value>anonymous types</value>
</data>
<data name="IDS_FeatureAutoImplementedProperties" xml:space="preserve">
<value>automatically implemented properties</value>
</data>
<data name="IDS_FeatureReadonlyAutoImplementedProperties" xml:space="preserve">
<value>readonly automatically implemented properties</value>
</data>
<data name="IDS_FeatureObjectInitializer" xml:space="preserve">
<value>object initializer</value>
</data>
<data name="IDS_FeatureCollectionInitializer" xml:space="preserve">
<value>collection initializer</value>
</data>
<data name="IDS_FeatureQueryExpression" xml:space="preserve">
<value>query expression</value>
</data>
<data name="IDS_FeatureExtensionMethod" xml:space="preserve">
<value>extension method</value>
</data>
<data name="IDS_FeaturePartialMethod" xml:space="preserve">
<value>partial method</value>
</data>
<data name="IDS_SK_METHOD" xml:space="preserve">
<value>method</value>
</data>
<data name="IDS_SK_TYPE" xml:space="preserve">
<value>type</value>
</data>
<data name="IDS_SK_NAMESPACE" xml:space="preserve">
<value>namespace</value>
</data>
<data name="IDS_SK_FIELD" xml:space="preserve">
<value>field</value>
</data>
<data name="IDS_SK_PROPERTY" xml:space="preserve">
<value>property</value>
</data>
<data name="IDS_SK_UNKNOWN" xml:space="preserve">
<value>element</value>
</data>
<data name="IDS_SK_VARIABLE" xml:space="preserve">
<value>variable</value>
</data>
<data name="IDS_SK_LABEL" xml:space="preserve">
<value>label</value>
</data>
<data name="IDS_SK_EVENT" xml:space="preserve">
<value>event</value>
</data>
<data name="IDS_SK_TYVAR" xml:space="preserve">
<value>type parameter</value>
</data>
<data name="IDS_SK_ALIAS" xml:space="preserve">
<value>using alias</value>
</data>
<data name="IDS_SK_EXTERNALIAS" xml:space="preserve">
<value>extern alias</value>
</data>
<data name="IDS_SK_CONSTRUCTOR" xml:space="preserve">
<value>constructor</value>
</data>
<data name="IDS_FOREACHLOCAL" xml:space="preserve">
<value>foreach iteration variable</value>
</data>
<data name="IDS_FIXEDLOCAL" xml:space="preserve">
<value>fixed variable</value>
</data>
<data name="IDS_USINGLOCAL" xml:space="preserve">
<value>using variable</value>
</data>
<data name="IDS_Contravariant" xml:space="preserve">
<value>contravariant</value>
</data>
<data name="IDS_Contravariantly" xml:space="preserve">
<value>contravariantly</value>
</data>
<data name="IDS_Covariant" xml:space="preserve">
<value>covariant</value>
</data>
<data name="IDS_Covariantly" xml:space="preserve">
<value>covariantly</value>
</data>
<data name="IDS_Invariantly" xml:space="preserve">
<value>invariantly</value>
</data>
<data name="IDS_FeatureDynamic" xml:space="preserve">
<value>dynamic</value>
</data>
<data name="IDS_FeatureNamedArgument" xml:space="preserve">
<value>named argument</value>
</data>
<data name="IDS_FeatureOptionalParameter" xml:space="preserve">
<value>optional parameter</value>
</data>
<data name="IDS_FeatureExceptionFilter" xml:space="preserve">
<value>exception filter</value>
</data>
<data name="IDS_FeatureTypeVariance" xml:space="preserve">
<value>type variance</value>
</data>
<data name="IDS_Parameter" xml:space="preserve">
<value>parameter</value>
</data>
<data name="IDS_Return" xml:space="preserve">
<value>return</value>
</data>
<data name="XML_InvalidToken" xml:space="preserve">
<value>The character(s) '{0}' cannot be used at this location.</value>
</data>
<data name="XML_IncorrectComment" xml:space="preserve">
<value>Incorrect syntax was used in a comment.</value>
</data>
<data name="XML_InvalidCharEntity" xml:space="preserve">
<value>An invalid character was found inside an entity reference.</value>
</data>
<data name="XML_ExpectedEndOfTag" xml:space="preserve">
<value>Expected '>' or '/>' to close tag '{0}'.</value>
</data>
<data name="XML_ExpectedIdentifier" xml:space="preserve">
<value>An identifier was expected.</value>
</data>
<data name="XML_InvalidUnicodeChar" xml:space="preserve">
<value>Invalid unicode character.</value>
</data>
<data name="XML_InvalidWhitespace" xml:space="preserve">
<value>Whitespace is not allowed at this location.</value>
</data>
<data name="XML_LessThanInAttributeValue" xml:space="preserve">
<value>The character '<' cannot be used in an attribute value.</value>
</data>
<data name="XML_MissingEqualsAttribute" xml:space="preserve">
<value>Missing equals sign between attribute and attribute value.</value>
</data>
<data name="XML_RefUndefinedEntity_1" xml:space="preserve">
<value>Reference to undefined entity '{0}'.</value>
</data>
<data name="XML_StringLiteralNoStartQuote" xml:space="preserve">
<value>A string literal was expected, but no opening quotation mark was found.</value>
</data>
<data name="XML_StringLiteralNoEndQuote" xml:space="preserve">
<value>Missing closing quotation mark for string literal.</value>
</data>
<data name="XML_StringLiteralNonAsciiQuote" xml:space="preserve">
<value>Non-ASCII quotations marks may not be used around string literals.</value>
</data>
<data name="XML_EndTagNotExpected" xml:space="preserve">
<value>End tag was not expected at this location.</value>
</data>
<data name="XML_ElementTypeMatch" xml:space="preserve">
<value>End tag '{0}' does not match the start tag '{1}'.</value>
</data>
<data name="XML_EndTagExpected" xml:space="preserve">
<value>Expected an end tag for element '{0}'.</value>
</data>
<data name="XML_WhitespaceMissing" xml:space="preserve">
<value>Required white space was missing.</value>
</data>
<data name="XML_ExpectedEndOfXml" xml:space="preserve">
<value>Unexpected character at this location.</value>
</data>
<data name="XML_CDataEndTagNotAllowed" xml:space="preserve">
<value>The literal string ']]>' is not allowed in element content.</value>
</data>
<data name="XML_DuplicateAttribute" xml:space="preserve">
<value>Duplicate '{0}' attribute</value>
</data>
<data name="ERR_NoMetadataFile" xml:space="preserve">
<value>Metadata file '{0}' could not be found</value>
</data>
<data name="ERR_MetadataReferencesNotSupported" xml:space="preserve">
<value>Metadata references are not supported.</value>
</data>
<data name="FTL_MetadataCantOpenFile" xml:space="preserve">
<value>Metadata file '{0}' could not be opened -- {1}</value>
</data>
<data name="ERR_NoTypeDef" xml:space="preserve">
<value>The type '{0}' is defined in an assembly that is not referenced. You must add a reference to assembly '{1}'.</value>
</data>
<data name="ERR_NoTypeDefFromModule" xml:space="preserve">
<value>The type '{0}' is defined in a module that has not been added. You must add the module '{1}'.</value>
</data>
<data name="ERR_OutputWriteFailed" xml:space="preserve">
<value>Could not write to output file '{0}' -- '{1}'</value>
</data>
<data name="ERR_MultipleEntryPoints" xml:space="preserve">
<value>Program has more than one entry point defined. Compile with /main to specify the type that contains the entry point.</value>
</data>
<data name="ERR_BadBinaryOps" xml:space="preserve">
<value>Operator '{0}' cannot be applied to operands of type '{1}' and '{2}'</value>
</data>
<data name="ERR_AmbigBinaryOpsOnUnconstrainedDefault" xml:space="preserve">
<value>Operator '{0}' cannot be applied to 'default' and operand of type '{1}' because it is a type parameter that is not known to be a reference type</value>
</data>
<data name="ERR_IntDivByZero" xml:space="preserve">
<value>Division by constant zero</value>
</data>
<data name="ERR_BadIndexLHS" xml:space="preserve">
<value>Cannot apply indexing with [] to an expression of type '{0}'</value>
</data>
<data name="ERR_BadIndexCount" xml:space="preserve">
<value>Wrong number of indices inside []; expected {0}</value>
</data>
<data name="ERR_BadUnaryOp" xml:space="preserve">
<value>Operator '{0}' cannot be applied to operand of type '{1}'</value>
</data>
<data name="ERR_BadOpOnNullOrDefaultOrNew" xml:space="preserve">
<value>Operator '{0}' cannot be applied to operand '{1}'</value>
</data>
<data name="ERR_ThisInStaticMeth" xml:space="preserve">
<value>Keyword 'this' is not valid in a static property, static method, or static field initializer</value>
</data>
<data name="ERR_ThisInBadContext" xml:space="preserve">
<value>Keyword 'this' is not available in the current context</value>
</data>
<data name="ERR_OmittedTypeArgument" xml:space="preserve">
<value>Omitting the type argument is not allowed in the current context</value>
</data>
<data name="WRN_InvalidMainSig" xml:space="preserve">
<value>'{0}' has the wrong signature to be an entry point</value>
</data>
<data name="WRN_InvalidMainSig_Title" xml:space="preserve">
<value>Method has the wrong signature to be an entry point</value>
</data>
<data name="ERR_NoImplicitConv" xml:space="preserve">
<value>Cannot implicitly convert type '{0}' to '{1}'</value>
</data>
<data name="ERR_NoExplicitConv" xml:space="preserve">
<value>Cannot convert type '{0}' to '{1}'</value>
</data>
<data name="ERR_ConstOutOfRange" xml:space="preserve">
<value>Constant value '{0}' cannot be converted to a '{1}'</value>
</data>
<data name="ERR_AmbigBinaryOps" xml:space="preserve">
<value>Operator '{0}' is ambiguous on operands of type '{1}' and '{2}'</value>
</data>
<data name="ERR_AmbigBinaryOpsOnDefault" xml:space="preserve">
<value>Operator '{0}' is ambiguous on operands '{1}' and '{2}'</value>
</data>
<data name="ERR_AmbigUnaryOp" xml:space="preserve">
<value>Operator '{0}' is ambiguous on an operand of type '{1}'</value>
</data>
<data name="ERR_InAttrOnOutParam" xml:space="preserve">
<value>An out parameter cannot have the In attribute</value>
</data>
<data name="ERR_ValueCantBeNull" xml:space="preserve">
<value>Cannot convert null to '{0}' because it is a non-nullable value type</value>
</data>
<data name="ERR_NoExplicitBuiltinConv" xml:space="preserve">
<value>Cannot convert type '{0}' to '{1}' via a reference conversion, boxing conversion, unboxing conversion, wrapping conversion, or null type conversion</value>
</data>
<data name="FTL_DebugEmitFailure" xml:space="preserve">
<value>Unexpected error writing debug information -- '{0}'</value>
</data>
<data name="ERR_BadVisReturnType" xml:space="preserve">
<value>Inconsistent accessibility: return type '{1}' is less accessible than method '{0}'</value>
</data>
<data name="ERR_BadVisParamType" xml:space="preserve">
<value>Inconsistent accessibility: parameter type '{1}' is less accessible than method '{0}'</value>
</data>
<data name="ERR_BadVisFieldType" xml:space="preserve">
<value>Inconsistent accessibility: field type '{1}' is less accessible than field '{0}'</value>
</data>
<data name="ERR_BadVisPropertyType" xml:space="preserve">
<value>Inconsistent accessibility: property type '{1}' is less accessible than property '{0}'</value>
</data>
<data name="ERR_BadVisIndexerReturn" xml:space="preserve">
<value>Inconsistent accessibility: indexer return type '{1}' is less accessible than indexer '{0}'</value>
</data>
<data name="ERR_BadVisIndexerParam" xml:space="preserve">
<value>Inconsistent accessibility: parameter type '{1}' is less accessible than indexer '{0}'</value>
</data>
<data name="ERR_BadVisOpReturn" xml:space="preserve">
<value>Inconsistent accessibility: return type '{1}' is less accessible than operator '{0}'</value>
</data>
<data name="ERR_BadVisOpParam" xml:space="preserve">
<value>Inconsistent accessibility: parameter type '{1}' is less accessible than operator '{0}'</value>
</data>
<data name="ERR_BadVisDelegateReturn" xml:space="preserve">
<value>Inconsistent accessibility: return type '{1}' is less accessible than delegate '{0}'</value>
</data>
<data name="ERR_BadVisDelegateParam" xml:space="preserve">
<value>Inconsistent accessibility: parameter type '{1}' is less accessible than delegate '{0}'</value>
</data>
<data name="ERR_BadVisBaseClass" xml:space="preserve">
<value>Inconsistent accessibility: base class '{1}' is less accessible than class '{0}'</value>
</data>
<data name="ERR_BadVisBaseInterface" xml:space="preserve">
<value>Inconsistent accessibility: base interface '{1}' is less accessible than interface '{0}'</value>
</data>
<data name="ERR_EventNeedsBothAccessors" xml:space="preserve">
<value>'{0}': event property must have both add and remove accessors</value>
</data>
<data name="ERR_AbstractEventHasAccessors" xml:space="preserve">
<value>'{0}': abstract event cannot use event accessor syntax</value>
</data>
<data name="ERR_EventNotDelegate" xml:space="preserve">
<value>'{0}': event must be of a delegate type</value>
</data>
<data name="WRN_UnreferencedEvent" xml:space="preserve">
<value>The event '{0}' is never used</value>
</data>
<data name="WRN_UnreferencedEvent_Title" xml:space="preserve">
<value>Event is never used</value>
</data>
<data name="ERR_InterfaceEventInitializer" xml:space="preserve">
<value>'{0}': instance event in interface cannot have initializer</value>
</data>
<data name="ERR_BadEventUsage" xml:space="preserve">
<value>The event '{0}' can only appear on the left hand side of += or -= (except when used from within the type '{1}')</value>
</data>
<data name="ERR_ExplicitEventFieldImpl" xml:space="preserve">
<value>An explicit interface implementation of an event must use event accessor syntax</value>
</data>
<data name="ERR_CantOverrideNonEvent" xml:space="preserve">
<value>'{0}': cannot override; '{1}' is not an event</value>
</data>
<data name="ERR_AddRemoveMustHaveBody" xml:space="preserve">
<value>An add or remove accessor must have a body</value>
</data>
<data name="ERR_AbstractEventInitializer" xml:space="preserve">
<value>'{0}': abstract event cannot have initializer</value>
</data>
<data name="ERR_ReservedAssemblyName" xml:space="preserve">
<value>The assembly name '{0}' is reserved and cannot be used as a reference in an interactive session</value>
</data>
<data name="ERR_ReservedEnumerator" xml:space="preserve">
<value>The enumerator name '{0}' is reserved and cannot be used</value>
</data>
<data name="ERR_AsMustHaveReferenceType" xml:space="preserve">
<value>The as operator must be used with a reference type or nullable type ('{0}' is a non-nullable value type)</value>
</data>
<data name="WRN_LowercaseEllSuffix" xml:space="preserve">
<value>The 'l' suffix is easily confused with the digit '1' -- use 'L' for clarity</value>
</data>
<data name="WRN_LowercaseEllSuffix_Title" xml:space="preserve">
<value>The 'l' suffix is easily confused with the digit '1'</value>
</data>
<data name="ERR_BadEventUsageNoField" xml:space="preserve">
<value>The event '{0}' can only appear on the left hand side of += or -=</value>
</data>
<data name="ERR_ConstraintOnlyAllowedOnGenericDecl" xml:space="preserve">
<value>Constraints are not allowed on non-generic declarations</value>
</data>
<data name="ERR_TypeParamMustBeIdentifier" xml:space="preserve">
<value>Type parameter declaration must be an identifier not a type</value>
</data>
<data name="ERR_MemberReserved" xml:space="preserve">
<value>Type '{1}' already reserves a member called '{0}' with the same parameter types</value>
</data>
<data name="ERR_DuplicateParamName" xml:space="preserve">
<value>The parameter name '{0}' is a duplicate</value>
</data>
<data name="ERR_DuplicateNameInNS" xml:space="preserve">
<value>The namespace '{1}' already contains a definition for '{0}'</value>
</data>
<data name="ERR_DuplicateNameInClass" xml:space="preserve">
<value>The type '{0}' already contains a definition for '{1}'</value>
</data>
<data name="ERR_NameNotInContext" xml:space="preserve">
<value>The name '{0}' does not exist in the current context</value>
</data>
<data name="ERR_NameNotInContextPossibleMissingReference" xml:space="preserve">
<value>The name '{0}' does not exist in the current context (are you missing a reference to assembly '{1}'?)</value>
</data>
<data name="ERR_AmbigContext" xml:space="preserve">
<value>'{0}' is an ambiguous reference between '{1}' and '{2}'</value>
</data>
<data name="WRN_DuplicateUsing" xml:space="preserve">
<value>The using directive for '{0}' appeared previously in this namespace</value>
</data>
<data name="WRN_DuplicateUsing_Title" xml:space="preserve">
<value>Using directive appeared previously in this namespace</value>
</data>
<data name="ERR_BadMemberFlag" xml:space="preserve">
<value>The modifier '{0}' is not valid for this item</value>
</data>
<data name="ERR_BadInitAccessor" xml:space="preserve">
<value>The 'init' accessor is not valid on static members</value>
</data>
<data name="ERR_BadMemberProtection" xml:space="preserve">
<value>More than one protection modifier</value>
</data>
<data name="WRN_NewRequired" xml:space="preserve">
<value>'{0}' hides inherited member '{1}'. Use the new keyword if hiding was intended.</value>
</data>
<data name="WRN_NewRequired_Title" xml:space="preserve">
<value>Member hides inherited member; missing new keyword</value>
</data>
<data name="WRN_NewRequired_Description" xml:space="preserve">
<value>A variable was declared with the same name as a variable in a base type. However, the new keyword was not used. This warning informs you that you should use new; the variable is declared as if new had been used in the declaration.</value>
</data>
<data name="WRN_NewNotRequired" xml:space="preserve">
<value>The member '{0}' does not hide an accessible member. The new keyword is not required.</value>
</data>
<data name="WRN_NewNotRequired_Title" xml:space="preserve">
<value>Member does not hide an inherited member; new keyword is not required</value>
</data>
<data name="ERR_CircConstValue" xml:space="preserve">
<value>The evaluation of the constant value for '{0}' involves a circular definition</value>
</data>
<data name="ERR_MemberAlreadyExists" xml:space="preserve">
<value>Type '{1}' already defines a member called '{0}' with the same parameter types</value>
</data>
<data name="ERR_StaticNotVirtual" xml:space="preserve">
<value>A static member '{0}' cannot be marked as override, virtual, or abstract</value>
</data>
<data name="ERR_OverrideNotNew" xml:space="preserve">
<value>A member '{0}' marked as override cannot be marked as new or virtual</value>
</data>
<data name="WRN_NewOrOverrideExpected" xml:space="preserve">
<value>'{0}' hides inherited member '{1}'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.</value>
</data>
<data name="WRN_NewOrOverrideExpected_Title" xml:space="preserve">
<value>Member hides inherited member; missing override keyword</value>
</data>
<data name="ERR_OverrideNotExpected" xml:space="preserve">
<value>'{0}': no suitable method found to override</value>
</data>
<data name="ERR_NamespaceUnexpected" xml:space="preserve">
<value>A namespace cannot directly contain members such as fields or methods</value>
</data>
<data name="ERR_NoSuchMember" xml:space="preserve">
<value>'{0}' does not contain a definition for '{1}'</value>
</data>
<data name="ERR_BadSKknown" xml:space="preserve">
<value>'{0}' is a {1} but is used like a {2}</value>
</data>
<data name="ERR_BadSKunknown" xml:space="preserve">
<value>'{0}' is a {1}, which is not valid in the given context</value>
</data>
<data name="ERR_ObjectRequired" xml:space="preserve">
<value>An object reference is required for the non-static field, method, or property '{0}'</value>
</data>
<data name="ERR_AmbigCall" xml:space="preserve">
<value>The call is ambiguous between the following methods or properties: '{0}' and '{1}'</value>
</data>
<data name="ERR_BadAccess" xml:space="preserve">
<value>'{0}' is inaccessible due to its protection level</value>
</data>
<data name="ERR_MethDelegateMismatch" xml:space="preserve">
<value>No overload for '{0}' matches delegate '{1}'</value>
</data>
<data name="ERR_RetObjectRequired" xml:space="preserve">
<value>An object of a type convertible to '{0}' is required</value>
</data>
<data name="ERR_RetNoObjectRequired" xml:space="preserve">
<value>Since '{0}' returns void, a return keyword must not be followed by an object expression</value>
</data>
<data name="ERR_LocalDuplicate" xml:space="preserve">
<value>A local variable or function named '{0}' is already defined in this scope</value>
</data>
<data name="ERR_AssgLvalueExpected" xml:space="preserve">
<value>The left-hand side of an assignment must be a variable, property or indexer</value>
</data>
<data name="ERR_StaticConstParam" xml:space="preserve">
<value>'{0}': a static constructor must be parameterless</value>
</data>
<data name="ERR_NotConstantExpression" xml:space="preserve">
<value>The expression being assigned to '{0}' must be constant</value>
</data>
<data name="ERR_NotNullConstRefField" xml:space="preserve">
<value>'{0}' is of type '{1}'. A const field of a reference type other than string can only be initialized with null.</value>
</data>
<data name="ERR_LocalIllegallyOverrides" xml:space="preserve">
<value>A local or parameter named '{0}' cannot be declared in this scope because that name is used in an enclosing local scope to define a local or parameter</value>
</data>
<data name="ERR_BadUsingNamespace" xml:space="preserve">
<value>A 'using namespace' directive can only be applied to namespaces; '{0}' is a type not a namespace. Consider a 'using static' directive instead</value>
</data>
<data name="ERR_BadUsingType" xml:space="preserve">
<value>A 'using static' directive can only be applied to types; '{0}' is a namespace not a type. Consider a 'using namespace' directive instead</value>
</data>
<data name="ERR_NoAliasHere" xml:space="preserve">
<value>A 'using static' directive cannot be used to declare an alias</value>
</data>
<data name="ERR_NoBreakOrCont" xml:space="preserve">
<value>No enclosing loop out of which to break or continue</value>
</data>
<data name="ERR_DuplicateLabel" xml:space="preserve">
<value>The label '{0}' is a duplicate</value>
</data>
<data name="ERR_NoConstructors" xml:space="preserve">
<value>The type '{0}' has no constructors defined</value>
</data>
<data name="ERR_NoNewAbstract" xml:space="preserve">
<value>Cannot create an instance of the abstract type or interface '{0}'</value>
</data>
<data name="ERR_ConstValueRequired" xml:space="preserve">
<value>A const field requires a value to be provided</value>
</data>
<data name="ERR_CircularBase" xml:space="preserve">
<value>Circular base type dependency involving '{0}' and '{1}'</value>
</data>
<data name="ERR_BadDelegateConstructor" xml:space="preserve">
<value>The delegate '{0}' does not have a valid constructor</value>
</data>
<data name="ERR_MethodNameExpected" xml:space="preserve">
<value>Method name expected</value>
</data>
<data name="ERR_ConstantExpected" xml:space="preserve">
<value>A constant value is expected</value>
</data>
<data name="ERR_V6SwitchGoverningTypeValueExpected" xml:space="preserve">
<value>A switch expression or case label must be a bool, char, string, integral, enum, or corresponding nullable type in C# 6 and earlier.</value>
</data>
<data name="ERR_IntegralTypeValueExpected" xml:space="preserve">
<value>A value of an integral type expected</value>
</data>
<data name="ERR_DuplicateCaseLabel" xml:space="preserve">
<value>The switch statement contains multiple cases with the label value '{0}'</value>
</data>
<data name="ERR_InvalidGotoCase" xml:space="preserve">
<value>A goto case is only valid inside a switch statement</value>
</data>
<data name="ERR_PropertyLacksGet" xml:space="preserve">
<value>The property or indexer '{0}' cannot be used in this context because it lacks the get accessor</value>
</data>
<data name="ERR_BadExceptionType" xml:space="preserve">
<value>The type caught or thrown must be derived from System.Exception</value>
</data>
<data name="ERR_BadEmptyThrow" xml:space="preserve">
<value>A throw statement with no arguments is not allowed outside of a catch clause</value>
</data>
<data name="ERR_BadFinallyLeave" xml:space="preserve">
<value>Control cannot leave the body of a finally clause</value>
</data>
<data name="ERR_LabelShadow" xml:space="preserve">
<value>The label '{0}' shadows another label by the same name in a contained scope</value>
</data>
<data name="ERR_LabelNotFound" xml:space="preserve">
<value>No such label '{0}' within the scope of the goto statement</value>
</data>
<data name="ERR_UnreachableCatch" xml:space="preserve">
<value>A previous catch clause already catches all exceptions of this or of a super type ('{0}')</value>
</data>
<data name="WRN_FilterIsConstantTrue" xml:space="preserve">
<value>Filter expression is a constant 'true', consider removing the filter</value>
</data>
<data name="WRN_FilterIsConstantTrue_Title" xml:space="preserve">
<value>Filter expression is a constant 'true'</value>
</data>
<data name="ERR_ReturnExpected" xml:space="preserve">
<value>'{0}': not all code paths return a value</value>
</data>
<data name="WRN_UnreachableCode" xml:space="preserve">
<value>Unreachable code detected</value>
</data>
<data name="WRN_UnreachableCode_Title" xml:space="preserve">
<value>Unreachable code detected</value>
</data>
<data name="ERR_SwitchFallThrough" xml:space="preserve">
<value>Control cannot fall through from one case label ('{0}') to another</value>
</data>
<data name="WRN_UnreferencedLabel" xml:space="preserve">
<value>This label has not been referenced</value>
</data>
<data name="WRN_UnreferencedLabel_Title" xml:space="preserve">
<value>This label has not been referenced</value>
</data>
<data name="ERR_UseDefViolation" xml:space="preserve">
<value>Use of unassigned local variable '{0}'</value>
</data>
<data name="WRN_UseDefViolation" xml:space="preserve">
<value>Use of unassigned local variable '{0}'</value>
</data>
<data name="WRN_UseDefViolation_Title" xml:space="preserve">
<value>Use of unassigned local variable</value>
</data>
<data name="WRN_UnreferencedVar" xml:space="preserve">
<value>The variable '{0}' is declared but never used</value>
</data>
<data name="WRN_UnreferencedVar_Title" xml:space="preserve">
<value>Variable is declared but never used</value>
</data>
<data name="WRN_UnreferencedField" xml:space="preserve">
<value>The field '{0}' is never used</value>
</data>
<data name="WRN_UnreferencedField_Title" xml:space="preserve">
<value>Field is never used</value>
</data>
<data name="ERR_UseDefViolationField" xml:space="preserve">
<value>Use of possibly unassigned field '{0}'</value>
</data>
<data name="WRN_UseDefViolationField" xml:space="preserve">
<value>Use of possibly unassigned field '{0}'</value>
</data>
<data name="WRN_UseDefViolationField_Title" xml:space="preserve">
<value>Use of possibly unassigned field</value>
</data>
<data name="ERR_UseDefViolationProperty" xml:space="preserve">
<value>Use of possibly unassigned auto-implemented property '{0}'</value>
</data>
<data name="WRN_UseDefViolationProperty" xml:space="preserve">
<value>Use of possibly unassigned auto-implemented property '{0}'</value>
</data>
<data name="WRN_UseDefViolationProperty_Title" xml:space="preserve">
<value>Use of possibly unassigned auto-implemented property</value>
</data>
<data name="ERR_UnassignedThis" xml:space="preserve">
<value>Field '{0}' must be fully assigned before control is returned to the caller</value>
</data>
<data name="WRN_UnassignedThis" xml:space="preserve">
<value>Field '{0}' must be fully assigned before control is returned to the caller</value>
</data>
<data name="WRN_UnassignedThis_Title" xml:space="preserve">
<value>Fields of a struct must be fully assigned in a constructor before control is returned to the caller</value>
</data>
<data name="ERR_AmbigQM" xml:space="preserve">
<value>Type of conditional expression cannot be determined because '{0}' and '{1}' implicitly convert to one another</value>
</data>
<data name="ERR_InvalidQM" xml:space="preserve">
<value>Type of conditional expression cannot be determined because there is no implicit conversion between '{0}' and '{1}'</value>
</data>
<data name="ERR_NoBaseClass" xml:space="preserve">
<value>A base class is required for a 'base' reference</value>
</data>
<data name="ERR_BaseIllegal" xml:space="preserve">
<value>Use of keyword 'base' is not valid in this context</value>
</data>
<data name="ERR_ObjectProhibited" xml:space="preserve">
<value>Member '{0}' cannot be accessed with an instance reference; qualify it with a type name instead</value>
</data>
<data name="ERR_ParamUnassigned" xml:space="preserve">
<value>The out parameter '{0}' must be assigned to before control leaves the current method</value>
</data>
<data name="WRN_ParamUnassigned" xml:space="preserve">
<value>The out parameter '{0}' must be assigned to before control leaves the current method</value>
</data>
<data name="WRN_ParamUnassigned_Title" xml:space="preserve">
<value>An out parameter must be assigned to before control leaves the method</value>
</data>
<data name="ERR_InvalidArray" xml:space="preserve">
<value>Invalid rank specifier: expected ',' or ']'</value>
</data>
<data name="ERR_ExternHasBody" xml:space="preserve">
<value>'{0}' cannot be extern and declare a body</value>
</data>
<data name="ERR_ExternHasConstructorInitializer" xml:space="preserve">
<value>'{0}' cannot be extern and have a constructor initializer</value>
</data>
<data name="ERR_AbstractAndExtern" xml:space="preserve">
<value>'{0}' cannot be both extern and abstract</value>
</data>
<data name="ERR_BadAttributeParamType" xml:space="preserve">
<value>Attribute constructor parameter '{0}' has type '{1}', which is not a valid attribute parameter type</value>
</data>
<data name="ERR_BadAttributeArgument" xml:space="preserve">
<value>An attribute argument must be a constant expression, typeof expression or array creation expression of an attribute parameter type</value>
</data>
<data name="ERR_BadAttributeParamDefaultArgument" xml:space="preserve">
<value>Attribute constructor parameter '{0}' is optional, but no default parameter value was specified.</value>
</data>
<data name="WRN_IsAlwaysTrue" xml:space="preserve">
<value>The given expression is always of the provided ('{0}') type</value>
</data>
<data name="WRN_IsAlwaysTrue_Title" xml:space="preserve">
<value>'is' expression's given expression is always of the provided type</value>
</data>
<data name="WRN_IsAlwaysFalse" xml:space="preserve">
<value>The given expression is never of the provided ('{0}') type</value>
</data>
<data name="WRN_IsAlwaysFalse_Title" xml:space="preserve">
<value>'is' expression's given expression is never of the provided type</value>
</data>
<data name="ERR_LockNeedsReference" xml:space="preserve">
<value>'{0}' is not a reference type as required by the lock statement</value>
</data>
<data name="ERR_NullNotValid" xml:space="preserve">
<value>Use of null is not valid in this context</value>
</data>
<data name="ERR_DefaultLiteralNotValid" xml:space="preserve">
<value>Use of default literal is not valid in this context</value>
</data>
<data name="ERR_UseDefViolationThis" xml:space="preserve">
<value>The 'this' object cannot be used before all of its fields have been assigned</value>
</data>
<data name="WRN_UseDefViolationThis" xml:space="preserve">
<value>The 'this' object cannot be used before all of its fields have been assigned</value>
</data>
<data name="WRN_UseDefViolationThis_Title" xml:space="preserve">
<value>The 'this' object cannot be used in a constructor before all of its fields have been assigned</value>
</data>
<data name="ERR_ArgsInvalid" xml:space="preserve">
<value>The __arglist construct is valid only within a variable argument method</value>
</data>
<data name="ERR_PtrExpected" xml:space="preserve">
<value>The * or -> operator must be applied to a pointer</value>
</data>
<data name="ERR_PtrIndexSingle" xml:space="preserve">
<value>A pointer must be indexed by only one value</value>
</data>
<data name="WRN_ByRefNonAgileField" xml:space="preserve">
<value>Using '{0}' as a ref or out value or taking its address may cause a runtime exception because it is a field of a marshal-by-reference class</value>
</data>
<data name="WRN_ByRefNonAgileField_Title" xml:space="preserve">
<value>Using a field of a marshal-by-reference class as a ref or out value or taking its address may cause a runtime exception</value>
</data>
<data name="ERR_AssgReadonlyStatic" xml:space="preserve">
<value>A static readonly field cannot be assigned to (except in a static constructor or a variable initializer)</value>
</data>
<data name="ERR_RefReadonlyStatic" xml:space="preserve">
<value>A static readonly field cannot be used as a ref or out value (except in a static constructor)</value>
</data>
<data name="ERR_AssgReadonlyProp" xml:space="preserve">
<value>Property or indexer '{0}' cannot be assigned to -- it is read only</value>
</data>
<data name="ERR_IllegalStatement" xml:space="preserve">
<value>Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement</value>
</data>
<data name="ERR_BadGetEnumerator" xml:space="preserve">
<value>foreach requires that the return type '{0}' of '{1}' must have a suitable public 'MoveNext' method and public 'Current' property</value>
</data>
<data name="ERR_BadGetAsyncEnumerator" xml:space="preserve">
<value>Asynchronous foreach requires that the return type '{0}' of '{1}' must have a suitable public 'MoveNextAsync' method and public 'Current' property</value>
</data>
<data name="ERR_TooManyLocals" xml:space="preserve">
<value>Only 65534 locals, including those generated by the compiler, are allowed</value>
</data>
<data name="ERR_AbstractBaseCall" xml:space="preserve">
<value>Cannot call an abstract base member: '{0}'</value>
</data>
<data name="ERR_RefProperty" xml:space="preserve">
<value>A property or indexer may not be passed as an out or ref parameter</value>
</data>
<data name="ERR_ManagedAddr" xml:space="preserve">
<value>Cannot take the address of, get the size of, or declare a pointer to a managed type ('{0}')</value>
</data>
<data name="ERR_BadFixedInitType" xml:space="preserve">
<value>The type of a local declared in a fixed statement must be a pointer type</value>
</data>
<data name="ERR_FixedMustInit" xml:space="preserve">
<value>You must provide an initializer in a fixed or using statement declaration</value>
</data>
<data name="ERR_InvalidAddrOp" xml:space="preserve">
<value>Cannot take the address of the given expression</value>