summaryrefslogtreecommitdiff
path: root/src/mscorlib/corefx/SR.cs
blob: 012bb86a66807c2a241087ec212d6b2a662b5122 (plain)
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
using System;
using System.Globalization;

// CoreFX creates SR in the System namespace. While putting the CoreCLR SR adapter in the root
// may be unconventional, it allows us to keep the shared code identical.

internal static class SR
{
    public static string Arg_ArrayZeroError
    {
        get { return Environment.GetResourceString("Arg_ArrayZeroError"); }
    }

    public static string Arg_ExternalException
    {
        get { return Environment.GetResourceString("Arg_ExternalException"); }
    }

    public static string Arg_HexStyleNotSupported
    {
        get { return Environment.GetResourceString("Arg_HexStyleNotSupported"); }
    }

    public static string Arg_InvalidHexStyle
    {
        get { return Environment.GetResourceString("Arg_InvalidHexStyle"); }
    }

    public static string ArgumentNull_Array
    {
        get { return Environment.GetResourceString("ArgumentNull_Array"); }
    }

    public static string ArgumentNull_ArrayValue
    {
        get { return Environment.GetResourceString("ArgumentNull_ArrayValue"); }
    }

    public static string ArgumentNull_Obj
    {
        get { return Environment.GetResourceString("ArgumentNull_Obj"); }
    }

    public static string ArgumentNull_String
    {
        get { return Environment.GetResourceString("ArgumentNull_String"); }
    }

    public static string ArgumentOutOfRange_AddValue
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_AddValue"); }
    }

    public static string ArgumentOutOfRange_BadHourMinuteSecond
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_BadHourMinuteSecond"); }
    }

    public static string ArgumentOutOfRange_BadYearMonthDay
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_BadYearMonthDay"); }
    }

    public static string ArgumentOutOfRange_Bounds_Lower_Upper
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_Bounds_Lower_Upper"); }
    }

    public static string ArgumentOutOfRange_CalendarRange
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_CalendarRange"); }
    }

    public static string ArgumentOutOfRange_Count
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_Count"); }
    }

    public static string ArgumentOutOfRange_Day
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_Day"); }
    }

    public static string ArgumentOutOfRange_Enum
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_Enum"); }
    }

    public static string ArgumentOutOfRange_Era
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_Era"); }
    }

    public static string ArgumentOutOfRange_Index
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_Index"); }
    }

    public static string ArgumentOutOfRange_IndexCountBuffer
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_IndexCountBuffer"); }
    }

    public static string ArgumentOutOfRange_InvalidEraValue
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_InvalidEraValue"); }
    }

    public static string ArgumentOutOfRange_Month
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_Month"); }
    }

    public static string ArgumentOutOfRange_NeedNonNegNum
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_NeedNonNegNum"); }
    }

    public static string ArgumentOutOfRange_NeedPosNum
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_NeedPosNum"); }
    }

    public static string Arg_ArgumentOutOfRangeException
    {
        get { return Environment.GetResourceString("Arg_ArgumentOutOfRangeException"); }
    }

    public static string ArgumentOutOfRange_OffsetLength
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_OffsetLength"); }
    }

    public static string ArgumentOutOfRange_Range
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_Range"); }
    }

    public static string Argument_CompareOptionOrdinal
    {
        get { return Environment.GetResourceString("Argument_CompareOptionOrdinal"); }
    }

    public static string Argument_ConflictingDateTimeRoundtripStyles
    {
        get { return Environment.GetResourceString("Argument_ConflictingDateTimeRoundtripStyles"); }
    }

    public static string Argument_ConflictingDateTimeStyles
    {
        get { return Environment.GetResourceString("Argument_ConflictingDateTimeStyles"); }
    }

    public static string Argument_CultureIetfNotSupported
    {
        get { return Environment.GetResourceString("Argument_CultureIetfNotSupported"); }
    }

    public static string Argument_CultureInvalidIdentifier
    {
        get { return Environment.GetResourceString("Argument_CultureInvalidIdentifier"); }
    }

    public static string Argument_CultureNotSupported
    {
        get { return Environment.GetResourceString("Argument_CultureNotSupported"); }
    }

    public static string Argument_CultureIsNeutral
    {
        get { return Environment.GetResourceString("Argument_CultureIsNeutral"); }
    }

    public static string Argument_CustomCultureCannotBePassedByNumber
    {
        get { return Environment.GetResourceString("Argument_CustomCultureCannotBePassedByNumber"); }
    }

    public static string Argument_EmptyDecString
    {
        get { return Environment.GetResourceString("Argument_EmptyDecString"); }
    }

    public static string Argument_IdnBadLabelSize
    {
        get { return Environment.GetResourceString("Argument_IdnBadLabelSize"); }
    }

    public static string Argument_IdnBadPunycode
    {
        get { return Environment.GetResourceString("Argument_IdnBadPunycode"); }
    }

    public static string Argument_IdnIllegalName
    {
        get { return Environment.GetResourceString("Argument_IdnIllegalName"); }
    }

    public static string Argument_InvalidArrayLength
    {
        get { return Environment.GetResourceString("Argument_InvalidArrayLength"); }
    }

    public static string Argument_InvalidCalendar
    {
        get { return Environment.GetResourceString("Argument_InvalidCalendar"); }
    }

    public static string Argument_InvalidCharSequence
    {
        get { return Environment.GetResourceString("Argument_InvalidCharSequence"); }
    }

    public static string Argument_InvalidCultureName
    {
        get { return Environment.GetResourceString("Argument_InvalidCultureName"); }
    }

    public static string Argument_InvalidDateTimeStyles
    {
        get { return Environment.GetResourceString("Argument_InvalidDateTimeStyles"); }
    }

    public static string Argument_InvalidDigitSubstitution
    {
        get { return Environment.GetResourceString("Argument_InvalidDigitSubstitution"); }
    }

    public static string Argument_InvalidFlag
    {
        get { return Environment.GetResourceString("Argument_InvalidFlag"); }
    }

    public static string Argument_InvalidGroupSize
    {
        get { return Environment.GetResourceString("Argument_InvalidGroupSize"); }
    }

    public static string Argument_InvalidNativeDigitCount
    {
        get { return Environment.GetResourceString("Argument_InvalidNativeDigitCount"); }
    }

    public static string Argument_InvalidNativeDigitValue
    {
        get { return Environment.GetResourceString("Argument_InvalidNativeDigitValue"); }
    }

    public static string Argument_InvalidNeutralRegionName
    {
        get { return Environment.GetResourceString("Argument_InvalidNeutralRegionName"); }
    }

    public static string Argument_InvalidNumberStyles
    {
        get { return Environment.GetResourceString("Argument_InvalidNumberStyles"); }
    }

    public static string Argument_InvalidResourceCultureName
    {
        get { return Environment.GetResourceString("Argument_InvalidResourceCultureName"); }
    }

    public static string Argument_NoEra
    {
        get { return Environment.GetResourceString("Argument_NoEra"); }
    }

    public static string Argument_NoRegionInvariantCulture
    {
        get { return Environment.GetResourceString("Argument_NoRegionInvariantCulture"); }
    }

    public static string Argument_OneOfCulturesNotSupported
    {
        get { return Environment.GetResourceString("Argument_OneOfCulturesNotSupported"); }
    }

    public static string Argument_OnlyMscorlib
    {
        get { return Environment.GetResourceString("Argument_OnlyMscorlib"); }
    }

    public static string Argument_ResultCalendarRange
    {
        get { return Environment.GetResourceString("Argument_ResultCalendarRange"); }
    }

    public static string Format_BadFormatSpecifier
    {
        get { return Environment.GetResourceString("Format_BadFormatSpecifier"); }
    }

    public static string InvalidOperation_DateTimeParsing
    {
        get { return Environment.GetResourceString("InvalidOperation_DateTimeParsing"); }
    }

    public static string InvalidOperation_EnumEnded
    {
        get { return Environment.GetResourceString("InvalidOperation_EnumEnded"); }
    }

    public static string InvalidOperation_EnumNotStarted
    {
        get { return Environment.GetResourceString("InvalidOperation_EnumNotStarted"); }
    }

    public static string InvalidOperation_ReadOnly
    {
        get { return Environment.GetResourceString("InvalidOperation_ReadOnly"); }
    }

    public static string Overflow_TimeSpanTooLong
    {
        get { return Environment.GetResourceString("Overflow_TimeSpanTooLong"); }
    }

    public static string Serialization_MemberOutOfRange
    {
        get { return Environment.GetResourceString("Serialization_MemberOutOfRange"); }
    }

    public static string Arg_InvalidHandle
    {
        get { return Environment.GetResourceString("Arg_InvalidHandle"); }
    }

    public static string ObjectDisposed_FileClosed
    {
        get { return Environment.GetResourceString("ObjectDisposed_FileClosed"); }
    }

    public static string Arg_HandleNotAsync
    {
        get { return Environment.GetResourceString("Arg_HandleNotAsync"); }
    }

    public static string ArgumentNull_Path
    {
        get { return Environment.GetResourceString("ArgumentNull_Path"); }
    }

    public static string Argument_EmptyPath
    {
        get { return Environment.GetResourceString("Argument_EmptyPath"); }
    }

    public static string Argument_InvalidFileModeAndAccessCombo
    {
        get { return Environment.GetResourceString("Argument_InvalidFileMode&AccessCombo"); }
    }

    public static string Argument_InvalidAppendMode
    {
        get { return Environment.GetResourceString("Argument_InvalidAppendMode"); }
    }

    public static string ArgumentNull_Buffer
    {
        get { return Environment.GetResourceString("ArgumentNull_Buffer"); }
    }

    public static string Argument_InvalidOffLen
    {
        get { return Environment.GetResourceString("Argument_InvalidOffLen"); }
    }

    public static string IO_UnknownFileName
    {
        get { return Environment.GetResourceString("IO_UnknownFileName"); }
    }

    public static string IO_FileStreamHandlePosition
    {
        get { return Environment.GetResourceString("IO.IO_FileStreamHandlePosition"); }
    }

    public static string NotSupported_FileStreamOnNonFiles
    {
        get { return Environment.GetResourceString("NotSupported_FileStreamOnNonFiles"); }
    }

    public static string IO_BindHandleFailed
    {
        get { return Environment.GetResourceString("IO.IO_BindHandleFailed"); }
    }

    public static string Arg_HandleNotSync
    {
        get { return Environment.GetResourceString("Arg_HandleNotSync"); }
    }

    public static string IO_SetLengthAppendTruncate
    {
        get { return Environment.GetResourceString("IO.IO_SetLengthAppendTruncate"); }
    }

    public static string ArgumentOutOfRange_FileLengthTooBig
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_FileLengthTooBig"); }
    }

    public static string Argument_InvalidSeekOrigin
    {
        get { return Environment.GetResourceString("Argument_InvalidSeekOrigin"); }
    }

    public static string IO_SeekAppendOverwrite
    {
        get { return Environment.GetResourceString("IO.IO_SeekAppendOverwrite"); }
    }

    public static string IO_FileTooLongOrHandleNotSync
    {
        get { return Environment.GetResourceString("IO_FileTooLongOrHandleNotSync"); }
    }

    public static string IndexOutOfRange_IORaceCondition
    {
        get { return Environment.GetResourceString("IndexOutOfRange_IORaceCondition"); }
    }

    public static string IO_FileNotFound
    {
        get { return Environment.GetResourceString("IO.FileNotFound"); }
    }

    public static string IO_FileNotFound_FileName
    {
        get { return Environment.GetResourceString("IO.FileNotFound_FileName"); }
    }

    public static string IO_PathNotFound_NoPathName
    {
        get { return Environment.GetResourceString("IO.PathNotFound_NoPathName"); }
    }

    public static string IO_PathNotFound_Path
    {
        get { return Environment.GetResourceString("IO.PathNotFound_Path"); }
    }

    public static string UnauthorizedAccess_IODenied_NoPathName
    {
        get { return Environment.GetResourceString("UnauthorizedAccess_IODenied_NoPathName"); }
    }

    public static string UnauthorizedAccess_IODenied_Path
    {
        get { return Environment.GetResourceString("UnauthorizedAccess_IODenied_Path"); }
    }

    public static string IO_AlreadyExists_Name
    {
        get { return Environment.GetResourceString("IO.IO_AlreadyExists_Name"); }
    }

    public static string IO_PathTooLong
    {
        get { return Environment.GetResourceString("IO.PathTooLong"); }
    }

    public static string IO_SharingViolation_NoFileName
    {
        get { return Environment.GetResourceString("IO.IO_SharingViolation_NoFileName"); }
    }

    public static string IO_SharingViolation_File
    {
        get { return Environment.GetResourceString("IO.IO_SharingViolation_File"); }
    }

    public static string IO_FileExists_Name
    {
        get { return Environment.GetResourceString("IO.IO_FileExists_Name"); }
    }

    public static string NotSupported_UnwritableStream
    {
        get { return Environment.GetResourceString("NotSupported_UnwritableStream"); }
    }

    public static string NotSupported_UnreadableStream
    {
        get { return Environment.GetResourceString("NotSupported_UnreadableStream"); }
    }

    public static string NotSupported_UnseekableStream
    {
        get { return Environment.GetResourceString("NotSupported_UnseekableStream"); }
    }

    public static string IO_EOF_ReadBeyondEOF
    {
        get { return Environment.GetResourceString("IO.EOF_ReadBeyondEOF"); }
    }

    public static string Argument_InvalidHandle
    {
        get { return Environment.GetResourceString("Argument_InvalidHandle"); }
    }

    public static string Argument_AlreadyBoundOrSyncHandle
    {
        get { return Environment.GetResourceString("Argument_AlreadyBoundOrSyncHandle"); }
    }

    public static string Argument_PreAllocatedAlreadyAllocated
    {
        get { return Environment.GetResourceString("Argument_PreAllocatedAlreadyAllocated"); }
    }

    public static string Argument_NativeOverlappedAlreadyFree
    {
        get { return Environment.GetResourceString("Argument_NativeOverlappedAlreadyFree"); }
    }

    public static string Argument_NativeOverlappedWrongBoundHandle
    {
        get { return Environment.GetResourceString("Argument_NativeOverlappedWrongBoundHandle"); }
    }

    public static string InvalidOperation_NativeOverlappedReused
    {
        get { return Environment.GetResourceString("InvalidOperation_NativeOverlappedReused"); }
    }

    public static string ArgumentOutOfRange_Length
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_Length"); }
    }

    public static string ArgumentOutOfRange_IndexString
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_IndexString"); }
    }

    public static string ArgumentOutOfRange_Capacity
    {
        get { return Environment.GetResourceString("ArgumentOutOfRange_Capacity"); }
    }

    public static string Arg_CryptographyException
    {
        get { return Environment.GetResourceString("Arg_CryptographyException"); }
    }

    public static string ArgumentException_BufferNotFromPool
    {
        get { return Environment.GetResourceString("ArgumentException_BufferNotFromPool"); }
    }

    public static string Argument_InvalidPathChars
    {
        get { return Environment.GetResourceString("Argument_InvalidPathChars"); }
    }

    public static string Argument_PathFormatNotSupported
    {
        get { return Environment.GetResourceString("Argument_PathFormatNotSupported"); }
    }

    public static string Arg_PathIllegal
    {
        get { return Environment.GetResourceString("Arg_PathIllegal"); }
    }

    public static string Arg_PathIllegalUNC
    {
        get { return Environment.GetResourceString("Arg_PathIllegalUNC"); }
    }

    public static string Arg_InvalidSearchPattern
    {
        get { return Environment.GetResourceString("Arg_InvalidSearchPattern"); }
    }

    public static string InvalidOperation_Cryptography
    {
        get { return Environment.GetResourceString("InvalidOperation_Cryptography"); }
    }

    public static string Format(string formatString, params object[] args)
    {
        return string.Format(CultureInfo.CurrentCulture, formatString, args);
    }

    internal static string ArgumentException_ValueTupleIncorrectType
    {
        get { return Environment.GetResourceString("ArgumentException_ValueTupleIncorrectType"); }
    }

    internal static string ArgumentException_ValueTupleLastArgumentNotATuple
    {
        get { return Environment.GetResourceString("ArgumentException_ValueTupleLastArgumentNotATuple"); }
    }

    internal static string SpinLock_TryEnter_ArgumentOutOfRange
    {
        get { return Environment.GetResourceString("SpinLock_TryEnter_ArgumentOutOfRange"); }
    }

    internal static string SpinLock_TryReliableEnter_ArgumentException
    {
        get { return Environment.GetResourceString("SpinLock_TryReliableEnter_ArgumentException"); }
    }

    internal static string SpinLock_TryEnter_LockRecursionException
    {
        get { return Environment.GetResourceString("SpinLock_TryEnter_LockRecursionException"); }
    }

    internal static string SpinLock_Exit_SynchronizationLockException
    {
        get { return Environment.GetResourceString("SpinLock_Exit_SynchronizationLockException"); }
    }

    internal static string SpinLock_IsHeldByCurrentThread
    {
        get { return Environment.GetResourceString("SpinLock_IsHeldByCurrentThread"); }
    }

    internal static string ObjectDisposed_StreamIsClosed
    {
        get { return Environment.GetResourceString("ObjectDisposed_StreamIsClosed"); }
    }

    internal static string Arg_SystemException
    {
        get { return Environment.GetResourceString("Arg_SystemException"); }
    }

    internal static string Arg_StackOverflowException
    {
        get { return Environment.GetResourceString("Arg_StackOverflowException"); }
    }

    internal static string Arg_DataMisalignedException
    {
        get { return Environment.GetResourceString("Arg_DataMisalignedException"); }
    }

    internal static string Arg_ExecutionEngineException
    {
        get { return Environment.GetResourceString("Arg_ExecutionEngineException"); }
    }

    internal static string Arg_AccessException
    {
        get { return Environment.GetResourceString("Arg_AccessException"); }
    }

    internal static string Arg_AccessViolationException
    {
        get { return Environment.GetResourceString("Arg_AccessViolationException"); }
    }

    internal static string Arg_ApplicationException
    {
        get { return Environment.GetResourceString("Arg_ApplicationException"); }
    }

    internal static string Arg_ArgumentException
    {
        get { return Environment.GetResourceString("Arg_ArgumentException"); }
    }

    internal static string Arg_ParamName_Name
    {
        get { return Environment.GetResourceString("Arg_ParamName_Name"); }
    }

    internal static string ArgumentNull_Generic
    {
        get { return Environment.GetResourceString("ArgumentNull_Generic"); }
    }

    internal static string Arg_ArithmeticException
    {
        get { return Environment.GetResourceString("Arg_ArithmeticException"); }
    }

    internal static string Arg_ArrayTypeMismatchException
    {
        get { return Environment.GetResourceString("Arg_ArrayTypeMismatchException"); }
    }

    internal static string Arg_DivideByZero
    {
        get { return Environment.GetResourceString("Arg_DivideByZero"); }
    }

    internal static string Arg_DuplicateWaitObjectException
    {
        get { return Environment.GetResourceString("Arg_DuplicateWaitObjectException"); }
    }

    internal static string Arg_EntryPointNotFoundException
    {
        get { return Environment.GetResourceString("Arg_EntryPointNotFoundException"); }
    }

    internal static string Arg_FieldAccessException
    {
        get { return Environment.GetResourceString("Arg_FieldAccessException"); }
    }

    internal static string Arg_FormatException
    {
        get { return Environment.GetResourceString("Arg_FormatException"); }
    }

    internal static string Arg_IndexOutOfRangeException
    {
        get { return Environment.GetResourceString("Arg_IndexOutOfRangeException"); }
    }

    internal static string Arg_InsufficientExecutionStackException
    {
        get { return Environment.GetResourceString("Arg_InsufficientExecutionStackException"); }
    }

    internal static string Arg_InvalidCastException
    {
        get { return Environment.GetResourceString("Arg_InvalidCastException"); }
    }

    internal static string Arg_InvalidOperationException
    {
        get { return Environment.GetResourceString("Arg_InvalidOperationException"); }
    }

    internal static string InvalidProgram_Default
    {
        get { return Environment.GetResourceString("InvalidProgram_Default"); }
    }

    internal static string Arg_MethodAccessException
    {
        get { return Environment.GetResourceString("Arg_MethodAccessException"); }
    }

    internal static string Arg_MulticastNotSupportedException
    {
        get { return Environment.GetResourceString("Arg_MulticastNotSupportedException"); }
    }

    internal static string Arg_NotFiniteNumberException
    {
        get { return Environment.GetResourceString("Arg_NotFiniteNumberException"); }
    }

    internal static string Arg_NotImplementedException
    {
        get { return Environment.GetResourceString("Arg_NotImplementedException"); }
    }

    internal static string Arg_NotSupportedException
    {
        get { return Environment.GetResourceString("Arg_NotSupportedException"); }
    }

    internal static string Arg_NullReferenceException
    {
        get { return Environment.GetResourceString("Arg_NullReferenceException"); }
    }

    internal static string ObjectDisposed_Generic
    {
        get { return Environment.GetResourceString("ObjectDisposed_Generic"); }
    }

    internal static string ObjectDisposed_ObjectName_Name
    {
        get { return Environment.GetResourceString("ObjectDisposed_ObjectName_Name"); }
    }

    internal static string Arg_OverflowException
    {
        get { return Environment.GetResourceString("Arg_OverflowException"); }
    }

    internal static string Arg_PlatformNotSupported
    {
        get { return Environment.GetResourceString("Arg_PlatformNotSupported"); }
    }

    internal static string Arg_RankException
    {
        get { return Environment.GetResourceString("Arg_RankException"); }
    }

    internal static string Arg_TimeoutException
    {
        get { return Environment.GetResourceString("Arg_TimeoutException"); }
    }

    internal static string Arg_TypeAccessException
    {
        get { return Environment.GetResourceString("Arg_TypeAccessException"); }
    }

    internal static string TypeInitialization_Default
    {
        get { return Environment.GetResourceString("TypeInitialization_Default"); }
    }

    internal static string TypeInitialization_Type
    {
        get { return Environment.GetResourceString("TypeInitialization_Type"); }
    }

    internal static string Arg_UnauthorizedAccessException
    {
        get { return Environment.GetResourceString("Arg_UnauthorizedAccessException"); }
    }
}