summaryrefslogtreecommitdiff
path: root/src/dlls/mscorrc/mscorrc.rc
blob: f3244218f9dff6434e3ee4c47ebaf21011459d04 (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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

//Microsoft Developer Studio generated resource script.
//
#include "resource.h"
#include "corerror.h"

#ifdef APSTUDIO_INVOKED
        #error Do not edit this file with App Studio.
#endif //APSTUDIO_INVOKED

#include <winresrc.h>

#ifndef FX_VER_FILEDESCRIPTION_STR
#define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime resources\0"
#endif

#include <fxver.h>
#include <fxver.rc>

/////////////////////////////////////////////////////////////////////////////
// English (U.S.) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32


/////////////////////////////////////////////////////////////////////////////
//
// String Table
//


#undef SMAKEHR
#undef EMAKEHR
#define SMAKEHR(val)    val
#define EMAKEHR(val)    val

#include "mscorrc.common.rc"

#define MDARC_PINVOKE_SIGNATURE_MISMATCH_MSG                                                                \
    L"A call to PInvoke function '%1$s' has unbalanced the stack. This is likely because the managed PInvoke "\
    L"signature does not match the unmanaged target signature. Check that the calling convention and "      \
    L"parameters of the PInvoke signature match the target unmanaged signature."
    
#define MDARC_PINVOKE_LOG_MSG                                                                               \
    L"The first PInvoke call to export '%1$s' in module '%2$s' has been made."

#define MDARC_LOAD_FROM_CONTEXT_MSG                                                                         \
    L"The assembly named '%1$s' was loaded from '%2$s' using the LoadFrom context. The use of this "        \
    L"context can result in unexpected behavior for serialization, casting and dependency resolution. "     \
    L"In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done "       \
    L"by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and "       \
    L"using Assembly.Load when explicitly loading assemblies."

#define MDARC_BINDING_FAILURE_CODEBASE_ONLY_MSG                                                             \
    L"The assembly loaded from code base '%1$s' failed to load in the '%2$s' binding context of the "       \
    L"AppDomain with ID %3$d. The cause of the failure was: %4$s"

#define MDARC_BINDING_FAILURE_DISPLAYNAME_ONLY_MSG                                                          \
    L"The assembly with display name '%1$s' failed to load in the '%2$s' binding context of the "           \
    L"AppDomain with ID %3$d. The cause of the failure was: %4$s"                                               

#define MDARC_BINDING_FAILURE_MSG                                                                           \
    L"The assembly with display name '%1$s' loaded from code base '%2$s' failed to load "                   \
    L"in the '%3$s' binding context of the AppDomain with ID %4$d. The cause of the failure was: %5$s"             

#define MDARC_INVALID_CONFIG_FILE_MSG                                                                       \
    L"The '%1$s' configuration file is invalid."

#define MDARC_CALLBACK_ON_COLLECTED_DELEGATE_MSG                                                            \
    L"A callback was made on a garbage collected delegate of type '%1$s'. This may cause application "      \
    L"crashes, corruption and data loss. "                                                                  \
    L"When passing delegates to unmanaged code, they must be kept alive by the "                            \
    L"managed application until it is guaranteed that they will never be called."

#define MDARC_INVALID_APT_STATE_CHANGE_SET_MSG                                                              \
    L"An attempt was made to change the apartment state of the thread to %1$s, "                            \
    L"but it has already been set to %2$s. When creating a new thread the apartment state should"           \
    L"be set before the thread is started. For the main thread of the application, the apartment"           \
    L"state can be set by specifying either [STAThreadAttribute] or [MTAThreadAttribute] on the"            \
    L"main method of the application. "                                                                     \
    L"If the application really needs to attempt to set the apartment state on a running thread, "          \
    L"Thread.TrySetApartmentState should be used and the return value should be consulted to determine "    \
    L"if the operation was successful. Note that Thread.TrySetApartmentState will not fire the "            \
    L"InvalidApartmentStateChange MDA."

#define MDARC_INVALID_APT_STATE_CHANGE_NOTSET_MSG                                                           \
    L"The current thread used to have an apartment state of %1$s, but the application has CoUnitialized "   \
    L"this thread and it is now %2$s. This may cause calls on RuntimeCallableWrappers "                     \
    L"representing some COM components to fail and may also cause COM component that are "                  \
    L"not multi-threaded to be accessed from multiple threads at the same time which can cause "            \
    L"corruption or data loss."

#define MDARC_JIT_ATTACH_MSG                                                                                \
    L"%1$s Managed Debugging Assistant"

#define MDARC_LOADER_LOCK_MSG                                                                               \
    L"Attempting managed execution inside OS Loader lock. Do not "                                          \
    L"attempt to run managed code inside a DllMain or image initialization function since doing "           \
    L"so can cause the application to hang."

#define MDARC_LOADER_LOCK_DLL_MSG                                                                           \
    L"DLL '%1$s' is attempting managed execution inside OS Loader lock. Do not "                            \
    L"attempt to run managed code inside a DllMain or image initialization function since doing "           \
    L"so can cause the application to hang."

#define MDARC_REENTRANCY_MSG                                                                                \
    L"Attempting to call into managed code without transitioning out first.  Do not "                       \
    L"attempt to run managed code inside low-level native extensibility points, such as the vectored "      \
    L"exception handler, since doing so can cause corruption and data loss." 

#define MDARC_REPORT_AV_ON_COM_RELEASE_MSG                                                                  \
    L"An exception was caught but handled while releasing a COM interface pointer "                         \
    L"through Marshal.Release, Marshal.ReleaseComObject or implicitly after the corresponding "             \
    L"RuntimeCallableWrapper was garbage collected. This is the result of a user "                          \
    L"refcount error or other problem with a COM object's Release. Make sure "                              \
    L"refcounts are managed properly. While these types of exceptions are caught by the CLR, "              \
    L"they can still lead to corruption and data loss so if possible the issue causing the exception "      \
    L"should be addressed" 

#define MDARC_REPORT_AV_ON_COM_RELEASE_WITH_VTABLE_MSG                                                      \
    L"An exception was caught but handled while releasing a COM interface pointer "                         \
    L"through Marshal.Release or Marshal.ReleaseComObject or implicitly after the corresponding "           \
    L"RuntimeCallableWrapper was garbage collected. This is the result of a user "                          \
    L"refcount error or other problem with a COM object's Release. Make sure "                              \
    L"refcounts are managed properly.  The COM interface pointer's original vtable "                        \
    L"pointer was 0x%1$x. While these types of exceptions are caught by the CLR, "                          \
    L"they can still lead to corruption and data loss so if possible the issue causing the exception "      \
    L"should be addressed" 

#define MDARC_INVALID_VARIANT_MSG                                                                           \
    L"An invalid VARIANT was detected during a conversion from an unmanaged VARIANT "                       \
    L"to a managed object. Passing invalid VARIANTs to the CLR can cause unexpected exceptions, "           \
    L"corruption or data loss."

#define MDARC_FAILED_QI_MSG                                                                                 \
    L"The call to QI for interface '%1$s' with IID '%2$s' failed with HRESULT 0x%3$s (%4$s). "              \
    L"One likely reason this failed is that the object does not have a proxy/stub dll properly registered."

#define MDARC_DISCONNECTED_CONTEXT_1_MSG                                                                    \
    L"Transition into COM context 0x%1$x for this RuntimeCallableWrapper failed with the following error: " \
    L"%2$s. "                                                                                               \
    L"This is typically because the COM context 0x%1$x where this RuntimeCallableWrapper was created "      \
    L"has been disconnected or it is busy doing something else and cannot process the context transition. " \
    L"No proxy will be used to service the request on the COM component and calls will be made to the "     \
    L"COM component directly. This may cause corruption or data loss. "										\
    L"To avoid this problem, please ensure that all COM contexts/apartments/threads stay alive and are "    \
    L"available for context transition, until the application is completely done with the "                 \
    L"RuntimeCallableWrappers that represents COM components that live inside them."

#define MDARC_DISCONNECTED_CONTEXT_2_MSG                                                                    \
    L"Transition into COM context 0x%1$x for this RuntimeCallableWrapper failed with the following error: " \
    L"%2$s. "                                                                                               \
    L"This is typically because the COM context 0x%1$x where this RuntimeCallableWrapper was created "      \
    L"has been disconnected or it is busy doing something else. " 								            \
    L"Releasing the interfaces from the current COM context (COM context 0x%3$x). "                         \
    L"This may cause corruption or data loss. "                                                             \
    L"To avoid this problem, please ensure that all COM contexts/apartments/threads stay alive and are "    \
    L"available for context transition, until the application is completely done with the "                 \
    L"RuntimeCallableWrappers that represents COM components that live inside them."

#define MDARC_NOTMARSHALABLE_MSG                                                                            \
    L"A non marshalable COM component is being used from a different apartment/context then the "           \
    L"one where it first entered the CLR. Since the component is non marshalable, it will be called directly " \
    L"from the current apartment/context. This may cause corruption or data loss if the component does "    \
    L"not support being accessed from multiple threads at once. This is most likely caused by a faulty "    \
    L"IMarshal implementation on the part of the COM component."

#define MDARC_INVALID_IUNKNOWN_MSG                                                                          \
    L"An invalid IUnknown* was detected during a conversion from a COM component "                          \
    L"to a managed object. Passing invalid IUnknown pointers to the CLR can cause unexpected "              \
    L"exceptions, corruption or data loss."

#define MDARC_CONTEXT_SWITCH_DEADLOCK_MSG                                                                                                                                       \
   L"The CLR has been unable to transition from COM context 0x%1$x to COM context 0x%2$x for 60 seconds. "  \
   L"The thread that owns the destination context/apartment is most likely either doing a non pumping wait " \
   L"or processing a very long running operation without pumping Windows messages. "                        \
   L"This situation generally has a negative performance impact and may even lead to "                      \
   L"the application becoming non responsive or memory usage accumulating continually over time. "          \
   L"To avoid this problem, all single threaded apartment (STA) threads should use pumping wait "           \
   L"primitives (such as CoWaitForMultipleHandles) and routinely pump messages during long running operations."

#define MDARC_RCW_CLEANUP_RACE_MSG                                                                          \
   L"An attempt has been made to free an RCW that is in use.  The RCW is in use on the active thread or "   \
   L"another thread.  Attempting to free an in-use RCW can cause corruption or data loss."

#define MDARC_MARSHALING_METHOD_MSG                                                                         \
    L"Marshaling parameter with index %1$i and name '%2$s' from '%3$s' to '%4$s'"

#define MDARC_MARSHALING_FIELD_MSG                                                                          \
    L"Marshaling field '%1$s' from '%2$s' to '%3$s'"

#define MDARC_INVALID_FUNCTION_PTR_IN_DELEGATE_MSG                                                          \
    L"Invalid function pointer 0x%1$x was passed into the runtime to be converted to a delegate. "          \
    L"Passing in invalid function pointers to be converted to delegates can cause crashes, "                \
    L"corruption or data loss. "
    
#define MDARC_DIRTY_CAST_AND_CALL_ON_INTERFACE_MSG                                                          \
    L"The native component calling into the CLR through this ComCallWrapper has performed an "              \
    L"illegal cast on this IUnknown or IDispatch pointer.  The caller neglected to call QueryInterface "    \
    L"for the correct interface before making this call."

#define MDARC_VTABLE_CALL_ON_AUTODISP_MEMBER_MSG                                                            \
    L"An early bound call (vtable call) was made on the following member of an auto "                       \
    L"dispatch class interface: '%1$s'. Early bound calls on members of auto dispatch "                     \
    L"class interfaces are not allowed. Please consider using an explicit interface "                       \
    L"as the default interface for the type. If a class interface must be "                                 \
    L"called early bound, change it to auto dual. This can be accomplished "                                \
    L"by marking the class with the following attribute, located in the "                                   \
    L"System.Runtime.InteropServices namespace: "                                                           \
    L"[ClassInterface(ClassInterfaceType.AutoDual)] "                                                       \
    
#define MDARC_INVALID_CER_CALL_MSG                                                                          \
    L"Method '%1$s', while executing within a constrained execution region, makes a call "                  \
    L"at IL offset 0x%2$04X to '%3$s', which does not have a sufficiently strong reliability "              \
    L"contract and might cause non-deterministic results."

#define MDARC_VIRTUAL_CER_CALL_MSG                                                                          \
    L"Method '%1$s', while executing within a constrained execution region, makes a call "                  \
    L"at IL offset 0x%2$04X to '%3$s', which is virtual and cannot be prepared automatically "              \
    L"at compile time. The caller must ensure this method is prepared explicitly at "                       \
    L"runtime before entering the constrained execution region."
    
#define MDARC_OPENGENERIC_CER_CALL_MSG                                                                      \
    L"Method '%1$s', which contains at least one constrained execution region, cannot be "                  \
    L"prepared automatically since it has one or more unbound generic type parameters. "                    \
    L"The caller must ensure this method is prepared explicitly at runtime prior to "                       \
    L"execution."
    
#define MDARC_ILLEGAL_PCR_MSG                                                                               \
    L"Method '%1$s' calls RuntimeHelpers.PrepareConstrainedRegions() at IL offset 0x%2$04X. "               \
    L"This is invalid since it does not coincide with the beginning of a try clause."

#define MDARC_MARSHALCLEANUPERROR_THREADCULTURE_MSG                                                         \
    L"The CLR marshaler encountered an error while attempting to restore the thread culture after a call "  \
    L"from unmanaged to managed where an LCID was used to specify the culture for the call. This will "     \
    L"cause the thread's culture to remain set to the one associated with the LCID. The cause of the failure was: %1$s"  

#define MDARC_MARSHALCLEANUPERROR_SAFEHANDLERELEASE_MSG                                                     \
    L"The CLR marshaler encountered an error while attempting to release the reference to a SafeHandle "    \
    L"it acquired in order to marshal the SafeHandle to an unmanaged pointer during a call from managed to unmanaged. " \
    L"This may cause the unmanaged resource the SafeHandle represents to be leaked. The cause of the failure was: %1$s"  

#define MDARC_MARSHALCLEANUPERROR_SAFEHANDLEPROP_MSG                                                        \
    L"The CLR marshaler encountered an error while attempting to associate a SafeHandle with an unmanaged resource. " \
    L"This may cause the unmanaged resource to be leaked. The cause of the failure was: %1$s"  

#define MDARC_MARSHALCLEANUPERROR_CUSTOMCLEANUP_MSG                                                         \
    L"An exception was thrown from the CleanupNativeData method of a custom marshaler of type '%1$s'. "     \
    L"This may cause an unmanaged data leak and should be corrected if possible. The cause of the failure was: %1$s"  

#define MDARC_SAFEHANDLE_CRITICAL_FAILURE_MSG                                                               \
    L"A SafeHandle or CriticalHandle of type '%1$s' failed to properly release the handle "                 \
    L"with value 0x%2$p. This usually indicates that the handle was released incorrectly "                  \
    L"via another means (such as extracting the handle using DangerousGetHandle and "                       \
    L"closing it directly or building another SafeHandle around it.)"
    
#define MDARC_DLLMAIN_RETURNS_FALSE_MSG                                                                     \
    L"Function DllMain, called with reason DLL_PROCESS_ATTACH, returned FALSE. DLL initialization failed. " \
    L"To ignore the DllMain return, set Registry value "                                                    \
    L"HKEY_LOCAL_MACHINE\\Software\\Microsoft\\.NETFramework\\IgnoreDllMainReturn to 1"

#define MDARC_REFLECTION_PERFORMANCE_MEMBERINFOCACHECREATION_MSG                                            \
    L"Reflection has created a memberInfo cache."
    
#define MDARC_INVALID_MEMBER_DECLARATION_MSG                                                                \
    L"The following error occurred while determining how to marshal the parameters of member '%1$s' of type '%2$s': " \
    L"%3$s This is most likely due to an incompatible MarshalAs attribute on one of the parameters. "  
    
#define MDARC_EXCEPTION_SWALLOWED_COM_TO_CLR_MSG                                                            \
    L"A COM client has called managed method '%1$s' on type '%2$s'. This method does not have an HRESULT return type and " \
    L"an exception was thrown that was not handled. The exception contains the following message: %3$s. "   \
    L"This exception will be caught and zero will be returned to the COM caller if the method's return "    \
    L"type is not void." 

#define MDARC_ASYNCHRONOUS_THREADABORT_MSG                                                                  \
    L"User code running on thread %1$i has attempted to abort thread %2$i. This may result in a corrupt state " \
    L"or resource leaks if the thread being aborted was in the middle of an operation that modifies global "\
    L"state or uses native resources. Aborting threads other than the currently running thread is strongly "\
    L"discouraged."

#define MDARC_DANGEROUS_THREADINGAPI_MSG                                                                    \
    L"User code has attempted to call the following API: '%1$s'. This may result in a deadlock in the process."

#define MDARC_DATETIME_INVALID_LOCAL_FORMAT_MSG                                                             \
    L"A UTC DateTime is being converted to text in a format that is only correct for local times. "         \
    L"This can happen when calling DateTime.ToString using the 'z' format specifier, which will "     \
    L"include a local time zone offset in the output. In that case, either use the 'Z' format specifier, "  \
    L"which designates a UTC time, or use the 'o' format string, which is the recommended way to persist "  \
    L"a DateTime in text. This can also occur when passing a DateTime to be serialized by "                 \
    L"XmlConvert or DataSet. If using XmlConvert.ToString, pass in "                                        \
    L"XmlDateTimeSerializationMode.RoundtripKind to serialize correctly. If using DataSet, set the "        \
    L"DateTimeMode on the DataColumn object to DataSetDateTime.Utc. "                                  

#define MDARC_NON_COMVISIBLE_BASE_CLASS_CLASSITF_MSG                                                        \
    L"A QueryInterface call was made requesting the class interface of COM visible managed class '%1$s'. "  \
    L"However since this class derives from non COM visible class '%2$s', the QueryInterface call will fail. " \
    L"This is done to prevent the non COM visible base class from being constrained by the COM versioning " \
    L"rules."    

#define MDARC_NON_COMVISIBLE_BASE_CLASS_IDISPATCH_MSG                                                       \
    L"A QueryInterface call was made requesting the default IDispatch interface of COM visible managed "    \
    L"class '%1$s'. However since this class does not have an explicit default interface and derives from non "\
    L"COM visible class '%2$s', the QueryInterface call will fail. This is done to prevent the non COM "    \
    L"visible base class from being constrained by the COM versioning rules."    

#define MDARC_INVALID_GCHANDLE_COOKIE_MSG                                                                   \
    L"An attempt was made to retrieve a GCHandle from an invalid IntPtr cookie (0x%1$x). "                  \
    L"The cookie was most likely invalid because the cookie does not represent a GCHandle, "                \
    L"the GCHandle has already been freed, "                                                                \
    L"the retrieval was attempted in the wrong AppDomain, "                                                 \
    L"or the GCHandle was marshaled to native code as a GCHandle but passed back into "                     \
    L"managed code as an IntPtr where a cast was attempted. " \
    L"Attempting to use an invalid pointer to reclaim a GC handle can cause unexpected exceptions, crashes, " \
    L"corruption or data loss. "

#define MDARC_FATAL_EXECUTION_ENGINE_ERROR_MSG \
    L"The runtime has encountered a fatal error. The address of the error was at 0x%1$08x, on thread 0x%2$x. "\
    L"The error code is 0x%3$08x. This error may be a bug in the CLR or in the unsafe "                     \
    L"or non-verifiable portions of user code. Common sources of this bug include user marshaling errors "  \
    L"for COM-interop or PInvoke, which may corrupt the stack." \

#define MDARC_INVALID_OVERLAPPED_TO_PINVOKE_MSG                                                             \
    L"An overlapped pointer (0x%1$p) that was not allocated on the GC heap was passed via PInvoke to "      \
    L"the Win32 function '%2$s' in module '%3$s'. "                                                         \
    L"If the AppDomain is shut down, this can cause heap corruption when the async I/O completes. "         \
    L"The best solution is to pass a NativeOverlapped structure retrieved from a call to "                  \
    L"System.Threading.Overlapped.Pack(). If the AppDomain exits, the CLR will keep this structure "        \
    L"alive and pinned until the I/O completes."

#define MDARC_INVALID_OVERLAPPED_FREE_MSG                                                                   \
    L"An overlapped pointer (0x%1$p) may have been freed before the I/O operation completed. "              \
    L"Freeing an overlapped pointer before the I/O operation completes will cause GC heap corruption "      \
    L"when the I/O does complete. "                                                                         \
    L"Note that this MDA may not represent an error if the overlapped operation did not start successfully" 
   
#define MDARC_DEBUGGER_FIBER_MODE_NOT_SUPPORTED_MSG                                                         \
    L"A thread has entered fiber mode and therefore debugging must be stopped."
    
STRINGTABLE DISCARDABLE 
BEGIN
    MDARC_PINVOKE_SIGNATURE_MISMATCH            MDARC_PINVOKE_SIGNATURE_MISMATCH_MSG
    MDARC_LOAD_FROM_CONTEXT                     MDARC_LOAD_FROM_CONTEXT_MSG
    MDARC_BINDING_FAILURE                       MDARC_BINDING_FAILURE_MSG
    MDARC_INVALID_CONFIG_FILE                   MDARC_INVALID_CONFIG_FILE_MSG
    MDARC_CALLBACK_ON_COLLECTED_DELEGATE        MDARC_CALLBACK_ON_COLLECTED_DELEGATE_MSG
    MDARC_INVALID_APT_STATE_CHANGE_SET          MDARC_INVALID_APT_STATE_CHANGE_SET_MSG
    MDARC_INVALID_APT_STATE_CHANGE_NOTSET       MDARC_INVALID_APT_STATE_CHANGE_NOTSET_MSG
    MDARC_LOADER_LOCK                           MDARC_LOADER_LOCK_MSG
    MDARC_LOADER_LOCK_DLL                       MDARC_LOADER_LOCK_DLL_MSG
    MDARC_JIT_ATTACH							MDARC_JIT_ATTACH_MSG
    MDARC_REENTRANCY                            MDARC_REENTRANCY_MSG
    MDARC_ASYNCHRONOUS_THREADABORT              MDARC_ASYNCHRONOUS_THREADABORT_MSG
    MDARC_DANGEROUS_THREADINGAPI                MDARC_DANGEROUS_THREADINGAPI_MSG
    MDARC_REPORT_AV_ON_COM_RELEASE              MDARC_REPORT_AV_ON_COM_RELEASE_MSG
    MDARC_REPORT_AV_ON_COM_RELEASE_WITH_VTABLE  MDARC_REPORT_AV_ON_COM_RELEASE_WITH_VTABLE_MSG
    MDARC_INVALID_VARIANT                       MDARC_INVALID_VARIANT_MSG
    MDARC_FAILED_QI                             MDARC_FAILED_QI_MSG
    MDARC_DISCONNECTED_CONTEXT_1                MDARC_DISCONNECTED_CONTEXT_1_MSG
    MDARC_DISCONNECTED_CONTEXT_2                MDARC_DISCONNECTED_CONTEXT_2_MSG
    MDARC_NOTMARSHALABLE                        MDARC_NOTMARSHALABLE_MSG
    MDARC_MARSHALCLEANUPERROR_THREADCULTURE     MDARC_MARSHALCLEANUPERROR_THREADCULTURE_MSG
    MDARC_MARSHALCLEANUPERROR_SAFEHANDLERELEASE MDARC_MARSHALCLEANUPERROR_SAFEHANDLERELEASE_MSG
    MDARC_MARSHALCLEANUPERROR_SAFEHANDLEPROP    MDARC_MARSHALCLEANUPERROR_SAFEHANDLEPROP_MSG
    MDARC_MARSHALCLEANUPERROR_CUSTOMCLEANUP     MDARC_MARSHALCLEANUPERROR_CUSTOMCLEANUP_MSG
    MDARC_INVALID_IUNKNOWN                      MDARC_INVALID_IUNKNOWN_MSG
    MDARC_CONTEXT_SWITCH_DEADLOCK               MDARC_CONTEXT_SWITCH_DEADLOCK_MSG
    MDARC_RCW_CLEANUP_RACE                      MDARC_RCW_CLEANUP_RACE_MSG
    MDARC_INVALID_FUNCTION_PTR_IN_DELEGATE      MDARC_INVALID_FUNCTION_PTR_IN_DELEGATE_MSG
    MDARC_DIRTY_CAST_AND_CALL_ON_INTERFACE      MDARC_DIRTY_CAST_AND_CALL_ON_INTERFACE_MSG
    MDARC_VTABLE_CALL_ON_AUTODISP_MEMBER        MDARC_VTABLE_CALL_ON_AUTODISP_MEMBER_MSG
    MDARC_INVALID_CER_CALL                      MDARC_INVALID_CER_CALL_MSG
    MDARC_VIRTUAL_CER_CALL                      MDARC_VIRTUAL_CER_CALL_MSG
    MDARC_OPENGENERIC_CER_CALL                  MDARC_OPENGENERIC_CER_CALL_MSG
    MDARC_ILLEGAL_PCR                           MDARC_ILLEGAL_PCR_MSG
    MDARC_SAFEHANDLE_CRITICAL_FAILURE           MDARC_SAFEHANDLE_CRITICAL_FAILURE_MSG
    MDARC_REFLECTION_PERFORMANCE_MEMBERINFOCACHECREATION            MDARC_REFLECTION_PERFORMANCE_MEMBERINFOCACHECREATION_MSG
    MDARC_DATETIME_INVALID_LOCAL_FORMAT         MDARC_DATETIME_INVALID_LOCAL_FORMAT_MSG
    MDARC_DLLMAIN_RETURNS_FALSE                 MDARC_DLLMAIN_RETURNS_FALSE_MSG
    MDARC_INVALID_MEMBER_DECLARATION            MDARC_INVALID_MEMBER_DECLARATION_MSG
    MDARC_EXCEPTION_SWALLOWED_COM_TO_CLR        MDARC_EXCEPTION_SWALLOWED_COM_TO_CLR_MSG
    MDARC_NON_COMVISIBLE_BASE_CLASS_CLASSITF    MDARC_NON_COMVISIBLE_BASE_CLASS_CLASSITF_MSG  
    MDARC_NON_COMVISIBLE_BASE_CLASS_IDISPATCH   MDARC_NON_COMVISIBLE_BASE_CLASS_IDISPATCH_MSG  
    MDARC_INVALID_GCHANDLE_COOKIE               MDARC_INVALID_GCHANDLE_COOKIE_MSG
    MDARC_PINVOKE_LOG                           MDARC_PINVOKE_LOG_MSG
    MDARC_FATAL_EXECUTION_ENGINE_ERROR          MDARC_FATAL_EXECUTION_ENGINE_ERROR_MSG
    MDARC_INVALID_OVERLAPPED_TO_PINVOKE         MDARC_INVALID_OVERLAPPED_TO_PINVOKE_MSG
    MDARC_INVALID_OVERLAPPED_FREE               MDARC_INVALID_OVERLAPPED_FREE_MSG
    MDARC_DEBUGGER_FIBER_MODE_NOT_SUPPORTED     MDARC_DEBUGGER_FIBER_MODE_NOT_SUPPORTED_MSG
    MDARC_BINDING_FAILURE_CODEBASE_ONLY         MDARC_BINDING_FAILURE_CODEBASE_ONLY_MSG
    MDARC_BINDING_FAILURE_DISPLAYNAME_ONLY      MDARC_BINDING_FAILURE_DISPLAYNAME_ONLY_MSG
    MDARC_MARSHALING_METHOD                     MDARC_MARSHALING_METHOD_MSG
    MDARC_MARSHALING_FIELD                      MDARC_MARSHALING_FIELD_MSG
    MDARC_MARSHALING_RETURN_VALUE_NAME          "return value"
    MDARC_MARSHALING_UNKNOWN_PARAM_NAME         "unknown"
END

STRINGTABLE DISCARDABLE
BEGIN
    CLDB_E_FILE_OLDVER                      "Version %d.%d is not a compatible version."
    CLDB_E_SMDUPLICATE                      "Shared memory '%hs' already exists."
    CLDB_E_NO_DATA                          "No metadata was found."
    
    CLDB_E_FILE_CORRUPT                     "Database file is corrupt and may not be usable."
    
    CLDB_E_INDEX_NOTFOUND                   "Index %s not found."

    CLDB_E_RECORD_NOTFOUND                  "No records found."
    
    CLDB_E_INTERNALERROR                    "Internal error 0x%08x."
    META_E_INVALID_TOKEN_TYPE               "A token passed to a metadata function has the wrong type."
    
    META_E_CA_INVALID_TARGET                "The custom attribute is not valid for the target object's type."
    META_E_CA_INVALID_ARGTYPE               "Unexpected property found in custom attribute value."
    META_E_CA_INVALID_BLOB                  "Unable to process the custom attribute value - it may be corrupt or incorrect."
    META_E_CA_UNKNOWN_ARGUMENT              "Unrecognized custom attribute argument: %*s."
    META_E_CA_REPEATED_ARG                  "Custom attribute argument %*s should not be repeated."
    META_E_CA_UNEXPECTED_TYPE               "Unexpected argument type."
    META_E_CA_INVALID_ARG_FOR_TYPE          "Argument '%s' cannot be applied to objects of this type."
    META_E_CA_INVALID_VALUE                 "Incorrect argument value."
    META_E_CA_INVALID_UUID                  "Incorrect UUID format."
    META_E_CA_INVALID_MARSHALAS_FIELDS      "MarshalAs attribute has fields set that are not valid for the specified unmanaged type."
    META_E_CA_NT_FIELDONLY                  "Specified unmanaged type is only valid on fields."
    META_E_CA_NEGATIVE_PARAMINDEX           "Parameter index cannot be negative."
    META_E_CA_NEGATIVE_CONSTSIZE            "Constant size cannot be negative."
    META_E_CA_FIXEDSTR_SIZE_REQUIRED        "SizeConst is required for a fixed string."
    META_E_CA_CUSTMARSH_TYPE_REQUIRED       "A MarshalType or MarshalTypeRef setting is required for a custom marshaler."
    META_E_CA_BAD_FRIENDS_ARGS              "[%1] InternalsVisibleTo declarations cannot have a version, culture, public key token, or processor architecture specified."
    META_E_CA_FRIENDS_SN_REQUIRED           "[%1] Strong-name signed assemblies must specify a public key in their InternalsVisibleTo declarations."
    
    // These strings belong to the MetaData validator.
    VLDTR_E_RID_OUTOFRANGE                  "Error (Structural): Table=0x%08x, Col=0x%08x, Row=0x%08x, has rid out of range."
    VLDTR_E_STRING_INVALID                  "Error (Structural): Table=0x%08x, Col=0x%08x, Row=0x%08x, has an invalid String offset."
    VLDTR_E_GUID_INVALID                    "Error (Structural): Table=0x%08x, Col=0x%08x, Row=0x%08x, has an invalid GUID offset."
    VLDTR_E_BLOB_INVALID                    "Error (Structural): Table=0x%08x, Col=0x%08x, Row=0x%08x, has an invalid BLOB offset."

    VLDTR_E_TD_ENCLNOTNESTED                "Error: TypeDef is not marked Nested but has an enclosing type."
    VLDTR_E_MR_BADCALLINGCONV               "Error: MemberRef signature has invalid calling convention=0x%08x."
    VLDTR_E_SIGNULL                         "Error: Signature has zero size."
    VLDTR_E_MD_BADCALLINGCONV               "Error: Signature has invalid calling convention=0x%08x."
    VLDTR_E_MD_THISSTATIC                   "Error: Method is marked Static but calling convention=0x%08x is marked HASTHIS."
    VLDTR_E_MD_NOTTHISNOTSTATIC             "Error: Method is not marked Static, but calling convention=0x%08x is not marked HASTHIS."
    VLDTR_E_MD_NOARGCNT                     "Error: Signature has no argument count at byte=0x%08x."
    VLDTR_E_SIG_MISSELTYPE                  "Error: Signature missing element type after modifier (modifier: 0x%02x; offset: 0x%08x)."
    VLDTR_E_SIG_MISSTKN                     "Error: Signature missing token after element 0x%x."
    VLDTR_E_SIG_TKNBAD                      "Error: Signature has an invalid token (token: 0x%08x; offset: 0x%08x)."
    VLDTR_E_SIG_MISSFPTR                    "Error: Signature missing function pointer at byte=0x%08x."
    VLDTR_E_SIG_MISSFPTRARGCNT              "Error: Signature has function pointer missing argument count at byte=0x%08x."
    VLDTR_E_SIG_MISSRANK                    "Error: Signature missing rank at byte=0x%08x."
    VLDTR_E_SIG_MISSNSIZE                   "Error: Signature missing count of sized dimensions of array at byte=0x%08x."
    VLDTR_E_SIG_MISSSIZE                    "Error: Signature missing size of dimension of array at byte=0x%08x."
    VLDTR_E_SIG_MISSNLBND                   "Error: Signature missing count of lower bounds of array at byte=0x%08x."
    VLDTR_E_SIG_MISSLBND                    "Error: Signature missing lower bound of array at byte=0x%08x."
    VLDTR_E_SIG_BADELTYPE                   "Error: Signature has invalid ELEMENT_TYPE_* (element type: 0x%08x; offset: 0x%08x)."
    VLDTR_E_SIG_SENTINMETHODDEF             "Error: ELEMENT_TYPE_SENTINEL is only allowed in MemberRef signatures."
    VLDTR_E_SIG_SENTMUSTVARARG              "Error: Signature containing ELEMENT_TYPE_SENTINEL must be VARARG."
    VLDTR_E_SIG_MULTSENTINELS               "Error: Multiple ELEMENT_TYPE_SENTINEL in signature."
    VLDTR_E_SIG_MISSARG                     "Error: Signature is missing argument # %d."
    VLDTR_E_SIG_BYREFINFIELD                "Error: Field of ByRef type."
    VLDTR_E_SIG_BADVOID                     "Error: Illegal use of type 'void' in signature."
    VLDTR_E_FMD_PINVOKENOTSTATIC            "Error: PInvoke item (field,method) must be Static."
    //@GENERICS
    VLDTR_E_GP_ILLEGAL_VARIANT_MVAR         "Error: GenericParam is a method type parameter and must be non-variant, not co-or-contra variant."
    
    COR_E_APPDOMAINUNLOADED                 "Error: Attempt to access unloaded AppDomain."
    COR_E_MISSINGMETHOD                     "Error: Missing method '%2' from class '%1'."
    COR_E_FIXUPSINEXE                       "Cannot load executable '%1' because it contains extra relocations or has relocations stripped."

    COR_E_FILELOAD                          "Unable to load file '%1'."
    COR_E_ASSEMBLYEXPECTED                  "The module '%1' was expected to contain an assembly manifest."
    FUSION_E_REF_DEF_MISMATCH               "The located assembly's manifest definition with name '%1' does not match the assembly reference."
    FUSION_E_INVALID_PRIVATE_ASM_LOCATION   "The found private assembly, '%1', was located outside the ApplicationBase."
    FUSION_E_SIGNATURE_CHECK_FAILED         "Strong name signature verification failed for assembly '%1'.  The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key."
    COR_E_MODULE_HASH_CHECK_FAILED          "The check of the module's hash failed for file '%1'."
    FUSION_E_PRIVATE_ASM_DISALLOWED         "Assembly '%1' is required to be strongly named."
    FUSION_E_INVALID_NAME                   "The given assembly name or codebase, '%1', was invalid."
    FUSION_E_ASM_MODULE_MISSING             "A module specified in the manifest of assembly '%1' could not be found."
    FUSION_E_CODE_DOWNLOAD_DISABLED         "HTTP download of assemblies has been disabled for this appdomain."
    FUSION_E_HOST_GAC_ASM_MISMATCH          "The assembly returned from the host store has a different strong name signature than the corresponding one in GAC. Assembly: '%1'"
    FUSION_E_LOADFROM_BLOCKED               "LoadFrom(), LoadFile(), Load(byte[]) and LoadModule() have been disabled by the host."
    FUSION_E_CACHEFILE_FAILED               "Failed to add file to AppDomain cache."
    FUSION_E_APP_DOMAIN_LOCKED              "The requested assembly version conflicts with what is already bound in the app domain or specified in the manifest."
    FUSION_E_CONFIGURATION_ERROR            "The requested assembly name was neither found in the GAC nor in the manifest or the manifest's specified location is wrong."
    FUSION_E_MANIFEST_PARSE_ERROR           "Unexpected error while parsing the specified manifest."
    IDS_EE_HASH_VAL_FAILED                  "Hash validation failed for file or assembly '%1'."
    CORSEC_E_MISSING_STRONGNAME             "Assembly '%1' is missing the required strong name."
    CORSEC_E_INVALID_PUBLICKEY              "The public key for assembly '%1' was invalid."
    CORSEC_E_INVALID_STRONGNAME             "Strong name validation failed for assembly '%1'."
    CORSEC_E_SIGNATURE_MISMATCH             "The allocated signature slot for assembly '%1' does not correspond to the generated signature size."
    CORSEC_E_NO_EXEC_PERM                   "Failed to grant permission to execute '%1'."
    CORSEC_E_MIN_GRANT_FAIL                 "Failed to grant required minimum permissions to '%1'."
    CORSEC_E_POLICY_EXCEPTION               "Policy exception occurred while processing '%1'."
    COR_E_EXECUTIONENGINE                   "An internal error happened in the Common Language Runtime's Execution Engine."
    COR_E_SERIALIZATION                     "An error relating to serialization occurred during the load of file or assembly '%1'."
    COR_E_SECURITY                          "A security violation has occurred."
    IDS_EE_PROC_NOT_FOUND                   "A procedure imported by '%1' could not be loaded."
    IDS_EE_SIMD_NGEN_DISALLOWED             "Target-dependent SIMD vector types may not be used with ngen."
    IDS_IBC_MISSING_EXTERNAL_TYPE           "The generic type specified by the IBC data is not available to this assembly"
    IDS_IBC_MISSING_EXTERNAL_METHOD         "The generic method specified by the IBC data is not available to this assembly"
    IDS_EE_HWINTRINSIC_NGEN_DISALLOWED      "Hardware intrinsics may not be used with ngen."

    IDS_INET_E_CANNOT_CONNECT               "Cannot connect to URL for '%1'."
    IDS_INET_E_RESOURCE_NOT_FOUND           "The server or proxy was not found for '%1'."
    IDS_INET_E_CONNECTION_TIMEOUT           "Connection timeout for URL '%1'."
    IDS_INET_E_SECURITY_PROBLEM             "Security problem encountered when connecting to URL for '%1'."

    CORPROF_E_FUNCTION_NOT_COMPILED         "Function 0x%08x had not yet been compiled."
    CORPROF_E_DATAINCOMPLETE                "The ID 0x%08x had not yet been fully loaded or defined."
    CORPROF_E_FUNCTION_NOT_IL               "Profiling error: the method has no associated IL."
    CORPROF_E_NOT_MANAGED_THREAD            "Profiling error: the thread is unmanaged and has never run managed code before."
    CORPROF_E_CALL_ONLY_FROM_INIT           "Profiling error: this function may only be called during profiler initialization."
    CORPROF_E_NOT_YET_AVAILABLE             "Profiling error: the requested information is not yet available."

    // For these to be moved from the left side to the right side, they must
    // be less than ENCERRORINFO_MAX_STRING_SIZE in length (currently, 60 characters)
    CORDBG_E_ENC_MODULE_NOT_ENC_ENABLED     "Error: Module must be loaded in Edit-and-Continue mode."
    CORDBG_E_ENC_CANT_ADD_FIELD_TO_VALUE_OR_LAYOUT_CLASS "Field cannot be added to a value or layout type."
    CORDBG_E_ENC_JIT_CANT_UPDATE            "JIT unable to update internal structures."
    END

// These strings are generated from within the EE.
STRINGTABLE DISCARDABLE 
BEGIN
    CEE_E_CVTRES_NOT_FOUND                  "Could not execute CVTRES.EXE."
    IDS_EE_EXCEPTION_FROM_HRESULT           "Exception from HRESULT: "
    IDS_EE_NDIRECT_UNSUPPORTED_SIG          "Method's type signature is not PInvoke compatible."
    IDS_EE_COM_UNSUPPORTED_SIG              "Method's type signature is not Interop compatible."
    IDS_EE_COM_UNSUPPORTED_TYPE             "The method returned a COM Variant type that is not Interop compatible."
    IDS_EE_NDIRECT_BADNATL                  "Invalid PInvoke or UnmanagedFunctionPointer metadata format."
    IDS_EE_NDIRECT_BADNATL_CALLCONV         "Invalid PInvoke or UnmanagedFunctionPointer calling convention."
    IDS_EE_NDIRECT_BADNATL_VARARGS_CALLCONV "Invalid PInvoke calling convention. Vararg functions must use the cdecl calling convention."
    IDS_EE_NDIRECT_BADNATL_THISCALL         "Invalid PInvoke calling convention. Thiscall requires that the first parameter is present and can be enregistered."
    IDS_EE_NDIRECT_LOADLIB_WIN              "Unable to load DLL '%1' or one of its dependencies: %2"
    IDS_EE_NDIRECT_LOADLIB_LINUX            "Unable to load shared library '%1' or one of its dependencies. In order to help diagnose loading problems, consider setting the LD_DEBUG environment variable: %2"
    IDS_EE_NDIRECT_LOADLIB_MAC              "Unable to load shared library '%1' or one of its dependencies. In order to help diagnose loading problems, consider setting the DYLD_PRINT_LIBRARIES environment variable: %2"
    IDS_EE_NDIRECT_GETPROCADDRESS_WIN       "Unable to find an entry point named '%2' in DLL '%1'."
    IDS_EE_NDIRECT_GETPROCADDRESS_UNIX      "Unable to find an entry point named '%2' in shared library '%1'."
    IDS_EE_NDIRECT_GETPROCADDR_WIN_DLL      "Unable to find an entry point named '%1' in DLL."
    IDS_EE_NDIRECT_GETPROCADDR_UNIX_SO      "Unable to find an entry point named '%1' in shared library."
    IDS_EE_NDIRECT_GETPROCADDRESS_NONAME    "A library name must be specified in a DllImport attribute applied to non-IJW methods."
    IDS_EE_CLASS_CONSTRAINTS_VIOLATION      "GenericArguments[%1], '%2', on '%3' violates the constraint of type parameter '%4'."
    IDS_EE_METHOD_CONSTRAINTS_VIOLATION     "Method %1.%2: type argument '%3' violates the constraint of type parameter '%4'."
    IDS_EE_NOSYNCHRONIZED                   "Synchronized attribute cannot be used with this method type."
    IDS_EE_LOAD_BAD_MAIN_SIG                "Main method for type '%1' has invalid signature."
    
    IDS_EE_FILE_NOT_FOUND                   "File or assembly name '%1' was not found."

    
    E_ACCESSDENIED                          "Access is denied: '%1'."
    COR_E_BADIMAGEFORMAT                    "The format of the file '%1' is invalid."
    COR_E_NEWER_RUNTIME                     "The assembly is built by a runtime newer than the currently loaded runtime, and cannot be loaded."
    IDS_EE_BAD_USER_PROFILE                 "The specified user does not have a valid profile.  Unable to load '%1'."
    IDS_EE_ALREADY_EXISTS                   "Cannot create/shadow copy '%1' when that file already exists."
    IDS_EE_NOTNDIRECT                       "Not a PInvoke method."
    IDS_EE_ERRORTITLE                       "Error"
    IDS_EE_ERRORMESSAGETEMPLATE             "Error 0x%08x.\n\n%s."
    IDS_EE_TWO_LOADED_MSCOREE_TITLE         "MSCOREE.DLL load error."
    IDS_EE_TWO_LOADED_MSCOREE_MSG           "Two different copies of MSCORWKS.DLL have been loaded.\n\nFirst copy:\n%s\n\nSecond copy:\n%s\n\nThis is typically caused by having a registered MSCOREE.DLL that is different\nfrom the one that is statically linked with the application."
    IDS_EE_RETHROW_NOT_ALLOWED              "No exception available to rethrow."
    IDS_EE_INVALID_OLE_VARIANT              "Specified OLE variant is invalid."
    IDS_EE_TO_MANY_ARGUMENTS_IN_MAIN        "Signature for the entry point has too many arguments."
    IDS_EE_FAILED_TO_FIND_MAIN              "Entry point not found in assembly '%1'."
    IDS_EE_ILLEGAL_TOKEN_FOR_MAIN           "Specified entry point in assembly '%1' is not a legal method."
    IDS_EE_MAIN_METHOD_HAS_INVALID_RTN      "Entry point must have a return type of void, integer, or unsigned integer."
    IDS_EE_MAIN_METHOD_MUST_BE_STATIC       "Entry point must be static."
    IDS_EE_SAFEARRAYTYPEMISMATCH            "Mismatch has occurred between the runtime type of the array and the sub type recorded in the metadata."
    IDS_EE_SAFEARRAYRANKMISMATCH            "SafeArray of rank %1 has been passed to a method expecting an array of rank %2."

    IDS_EE_SRC_OBJ_NOT_COMOBJECT            "Object type must be __ComObject or derived from __ComObject."
    IDS_EE_CANNOT_COERCE_COMOBJECT          "Source object cannot be converted to the destination type since it does not support all the required interfaces."

    IDS_EE_BADMARSHALFIELD_ERROR_MSG        "Cannot marshal field '%2' of type '%1': %3"
    IDS_EE_BADMARSHAL_ERROR_MSG             "Cannot marshal '%1': %2"

#ifdef FEATURE_COMINTEROP
    IDS_EE_BADMARSHAL_BOOLEAN               "Invalid managed/unmanaged type combination (booleans must be paired with I1, U1, Bool, or VariantBool)."
    IDS_EE_BADMARSHAL_I4                    "Invalid managed/unmanaged type combination (Int32/UInt32 must be paired with I4, U4, or Error)."
    IDS_EE_BADMARSHAL_ARRAY                 "Invalid managed/unmanaged type combination (Arrays can only be marshaled as LPArray, ByValArray, or SafeArray)."
    IDS_EE_BADMARSHALPARAM_STRING           "Invalid managed/unmanaged type combination (String parameters and return types must be paired with LPStr, LPWStr, LPTStr, BStr, TBStr, VBByRefStr, or AnsiBStr)."
    IDS_EE_BADMARSHALFIELD_ARRAY            "Invalid managed/unmanaged type combination (Array fields must be paired with ByValArray or SafeArray)." 
    IDS_EE_BADMARSHALFIELD_STRING           "Invalid managed/unmanaged type combination (String fields must be paired with LPStr, LPWStr, LPTStr, BStr, or ByValTStr)."
    IDS_EE_BADMARSHALFIELD_DECIMAL          "Invalid managed/unmanaged type combination (Decimal fields must be paired with Struct or Currency)."
    IDS_EE_BADMARSHAL_STRINGARRAY           "Invalid managed/unmanaged type combination (String[] must be paired with an ArraySubType of LPStr, LPWStr, BStr, or LPTStr)."
    IDS_EE_BADMARSHAL_DECIMALARRAY          "Invalid managed/unmanaged type combination (Decimal[] must be paired with an ArraySubType of Struct or Currency)."
    IDS_EE_BADMARSHAL_WINRT_MARSHAL_AS      "Invalid managed/unmanaged type combination (Windows Runtime parameters and fields must not have a MarshalAs attribute set)."
    IDS_EE_BADMARSHAL_WINRT_MISSING_GUID    "Invalid managed/unmanaged type combination (Windows Runtime interfaces, classes and delegates must have a Guid or a default interface)."
    IDS_EE_BADMARSHAL_WINRT_DELEGATE        "Invalid managed/unmanaged type combination (Delegates must be Windows Runtime delegates)."
    IDS_EE_BADMARSHAL_DEFAULTIFACE_NOT_WINRT_IFACE "The default interface must refer to a Windows Runtime interface with a GUID."
    IDS_EE_BADMARSHAL_DEFAULTIFACE_NOT_SUBTYPE "The default interface must refer to an interface that is implemented by the type."
    IDS_EE_BADMARSHAL_DATETIMEOFFSET        "Invalid managed/unmanaged type combination (the DateTimeOffset structure must be paired with Struct)."
    IDS_EE_INVALIDARG_WINRT_INVALIDURI      "The given System.Uri cannot be converted into a Windows.Foundation.Uri. Please see http://go.microsoft.com/fwlink/?LinkID=215849 for details."
    IDS_EE_BADMARSHAL_WINRT_ILLEGAL_TYPE    "Windows Runtime marshaler does not support the type."
#else // FEATURE_COMINTEROP
    IDS_EE_BADMARSHAL_BOOLEAN               "Invalid managed/unmanaged type combination (booleans must be paired with I1, U1, or Bool)."
    IDS_EE_BADMARSHAL_I4                    "Invalid managed/unmanaged type combination (Int32/UInt32 must be paired with I4 or U4)."
    IDS_EE_BADMARSHAL_ARRAY                 "Invalid managed/unmanaged type combination (Arrays can only be marshaled as LPArray or ByValArray)."
    IDS_EE_BADMARSHALPARAM_STRING           "Invalid managed/unmanaged type combination (String parameters and return types must be paired with LPStr, LPWStr, or LPTStr)."
    IDS_EE_BADMARSHALFIELD_ARRAY            "Invalid managed/unmanaged type combination (Array fields must be paired with ByValArray)." 
    IDS_EE_BADMARSHALFIELD_STRING           "Invalid managed/unmanaged type combination (String fields must be paired with LPStr, LPWStr, LPTStr, or ByValTStr)."
    IDS_EE_BADMARSHALFIELD_DECIMAL          "Invalid managed/unmanaged type combination (Decimal fields must be paired with Struct)."
    IDS_EE_BADMARSHAL_STRINGARRAY           "Invalid managed/unmanaged type combination (String[] must be paired with an ArraySubType of LPStr, LPWStr, or LPTStr)."
    IDS_EE_BADMARSHAL_DECIMALARRAY          "Invalid managed/unmanaged type combination (Decimal[] must be paired with an ArraySubType of Struct)."
#endif // FEATURE_COMINTEROP

    IDS_EE_BADMARSHAL_GENERIC               "Invalid managed/unmanaged type combination."
    IDS_EE_BADMARSHAL_CHAR                  "Invalid managed/unmanaged type combination (chars must be paired with I1, I2, U1, or U2)."
    IDS_EE_BADMARSHAL_I1                    "Invalid managed/unmanaged type combination (Byte/SByte must be paired with I1 or U1)."
    IDS_EE_BADMARSHAL_I2                    "Invalid managed/unmanaged type combination (Int16/UInt16 must be paired with I2 or U2)."
    IDS_EE_BADMARSHAL_I8                    "Invalid managed/unmanaged type combination (Int64/UInt64 must be paired with I8 or U8)."
    IDS_EE_BADMARSHAL_I                     "Invalid managed/unmanaged type combination (Int/UInt must be paired with SysInt or SysUInt)."
    IDS_EE_BADMARSHAL_R4                    "Invalid managed/unmanaged type combination (Single must be paired with R4)."
    IDS_EE_BADMARSHAL_R8                    "Invalid managed/unmanaged type combination (Double must be paired with R8)."
    IDS_EE_BADMARSHAL_PTR                   "Invalid managed/unmanaged type combination (pointers must not have a MarshalAs attribute set)."
    IDS_EE_BADMARSHAL_NOLAYOUT              "The type definition of this type has no layout information."
    IDS_EE_BADMARSHAL_DELEGATE              "Invalid managed/unmanaged type combination (Delegates must be paired with FunctionPtr or Interface)."
    IDS_EE_BADMARSHAL_FNPTR                 "Invalid managed/unmanaged type combination (function pointers must be paired with FunctionPtr)."
    IDS_EE_BADMARSHAL_INTERFACE             "Invalid managed/unmanaged type combination (Interfaces must be paired with Interface)."
    IDS_EE_BADMARSHAL_CLASS                 "Invalid managed/unmanaged type combination (this type must be paired with LPStruct or Interface)."
    IDS_EE_BADMARSHAL_VALUETYPE             "Invalid managed/unmanaged type combination (this value type must be paired with Struct)."
    IDS_EE_BADMARSHAL_OBJECT                "Invalid managed/unmanaged type combination (the Object class must be paired with Interface, IUnknown, IDispatch, AsAny, or Struct)."
    IDS_EE_BADMARSHALFIELD_OBJECT           "Invalid managed/unmanaged type combination (the Object class must be paired with Interface, IUnknown, IDispatch, or Struct)."
    IDS_EE_BADMARSHALPARAM_DECIMAL          "Invalid managed/unmanaged type combination (Decimal parameters and return types must be paired with Struct, LPStruct, or Currency)."
    IDS_EE_BADMARSHAL_GUID                  "Invalid managed/unmanaged type combination (the Guid class must be paired with Struct or LPStruct)."
    IDS_EE_BADMARSHAL_DATETIME              "Invalid managed/unmanaged type combination (the DateTime class must be paired with Struct)."
    IDS_EE_BADMARSHAL_SAFEHANDLE            "Invalid managed/unmanaged type combination (SafeHandles must not have a MarshalAs attribute set and cannot be used in arrays)."
    IDS_EE_BADMARSHAL_CRITICALHANDLE        "Invalid managed/unmanaged type combination (CriticalHandles must not have a MarshalAs attribute set and cannot be used in arrays)."
    IDS_EE_BADMARSHAL_BADMANAGED            "There is no marshaling support for this type."
    IDS_EE_BADMARSHAL_NESTEDARRAY           "There is no marshaling support for nested arrays."
    IDS_EE_BADMARSHAL_UNSUPPORTED_SIG       "Signature is not Interop compatible."
    IDS_EE_BADMARSHAL_OBJECTARRAY           "Invalid managed/unmanaged type combination (Object[] or System.Array must be paired with an ArraySubType of Struct, Interface, IUnknown or IDispatch)."
    IDS_EE_BADMARSHAL_DATETIMEARRAY         "Invalid managed/unmanaged type combination (DateTime[] must be paired with an ArraySubType of Struct)."
    IDS_EE_BADMARSHAL_SAFEHANDLEARRAY       "Invalid managed/unmanaged type combination (Arrays of SafeHandles are not supported)."
    IDS_EE_BADMARSHAL_CRITICALHANDLEARRAY   "Invalid managed/unmanaged type combination (Arrays of CriticalHandles are not supported)."
    IDS_EE_BADMARSHAL_SYSARRAY              "Invalid managed/unmanaged type combination (System.Array must be paired with SafeArray or Interface)."
    IDS_EE_BADMARSHAL_PTRSUBTYPE            "Pointers cannot reference managed objects.  Use ByRef instead."
    IDS_EE_BADMARSHAL_PTRNONBLITTABLE       "Pointers cannot reference marshaled structures.  Use ByRef instead."
    IDS_EE_BADMARSHAL_RESTRICTION           "This type can only be marshaled in restricted ways."
    IDS_EE_BADMARSHAL_ASANYRESTRICTION      "AsAny cannot be used on return types, ByRef parameters, ArrayWithOffset, or parameters passed from unmanaged to managed."
    IDS_EE_BADMARSHAL_VBBYVALSTRRESTRICTION "VBByRefStr can only be used in combination with in/out, ByRef managed-to-unmanaged strings."
    IDS_EE_BADMARSHAL_AWORESTRICTION        "ArrayWithOffsets can only be marshaled as inout, non-ByRef, managed-to-unmanaged parameters."
    IDS_EE_BADMARSHAL_ARGITERATORRESTRICTION "ArgIterators cannot be marshaled ByRef."
    IDS_EE_BADMARSHAL_HANDLEREFRESTRICTION  "HandleRefs cannot be marshaled ByRef or from unmanaged to managed."
    IDS_EE_BADMARSHAL_SAFEHANDLENATIVETOCOM "SafeHandles cannot be marshaled from unmanaged to managed."
    IDS_EE_BADMARSHAL_ABSTRACTOUTSAFEHANDLE "Ref and out SafeHandle parameters cannot be abstract."
    IDS_EE_BADMARSHAL_ABSTRACTRETSAFEHANDLE "Returned SafeHandles cannot be abstract."
    IDS_EE_BADMARSHAL_RETURNSHCOMTONATIVE   "SafeHandles cannot be returned from managed to unmanaged."
    IDS_EE_BADMARSHAL_CRITICALHANDLENATIVETOCOM "CriticalHandles cannot be marshaled from unmanaged to managed."
    IDS_EE_BADMARSHAL_ABSTRACTOUTCRITICALHANDLE "Ref and out CriticalHandle parameters cannot be abstract."
    IDS_EE_BADMARSHAL_ABSTRACTRETCRITICALHANDLE "Returned CriticalHandles cannot be abstract."
    IDS_EE_BADMARSHAL_NOTMARSHALABLE        "The type definition of this field has layout information but has an invalid managed/unmanaged type combination or is unmarshalable."
    IDS_EE_BADMARSHAL_BADMETADATA           "Invalid marshaling metadata."
    IDS_EE_BADMARSHAL_CUSTOMMARSHALER       "Custom marshalers are only allowed on classes, strings, arrays, and boxed value types."
    IDS_EE_BADMARSHAL_GENERICS_RESTRICTION  "Generic types cannot be marshaled."

    IDS_EE_BADMARSHALPARAM_STRINGBUILDER    "Invalid managed/unmanaged type combination (StringBuilders must be paired with LPStr, LPWStr, or LPTStr)."
    IDS_EE_BADMARSHALPARAM_NO_LPTSTR        "Invalid managed/unmanaged type combination (Strings cannot be paired with LPTStr for parameters and return types of methods in interfaces exposed to COM)."
    
    IDS_EE_BADMARSHALFIELD_NOCUSTOMMARSH    "Custom marshalers cannot be used on fields of structures."
    IDS_EE_BADMARSHALFIELD_FIXEDARRAY_NOSIZE   "Fixed sized array fields inside structures must have the MarshalAs SizeConst field set to the size of the array."
    IDS_EE_BADMARSHALFIELD_FIXEDARRAY_ZEROSIZE "Fixed sized array fields cannot have a SizeConst of zero."
    IDS_EE_BADMARSHALFIELD_LAYOUTCLASS      "Invalid managed/unmanaged type combination  (Classes with layout fields must be paired with Struct or Interface)." 
    IDS_EE_BADMARSHALFIELD_NOSTRINGBUILDER  "Struct or class fields cannot be of type StringBuilder. The same effect can usually be achieved by using a String field and preinitializing it to a string with length matching the length of the appropriate buffer."
    IDS_EE_BADMARSHALFIELD_ZEROLENGTHFIXEDSTRING "The length for ByValTStr strings cannot be zero."

#ifdef FEATURE_COMINTEROP
    IDS_EE_BADMARSHALFIELD_NULL_HSTRING     "Null strings may not be marshaled in Windows Runtime fields."
    IDS_EE_BADMARSHALARRAY_NULL_HSTRING     "Null strings may not be marshaled in Windows Runtime arrays. Null string was encountered at index %1."
    IDS_EE_BADMARSHAL_NULLABLE_RESTRICTION  "Given Windows.Foundation.IReference can not be converted to System.Nullable type. Type arguments can't be empty, string or non-value types. "
#endif // FEATURE_COMINTEROP

// For ManagedToNativeComInteropStubAttribute
#ifdef FEATURE_COMINTEROP
    IDS_EE_INTEROP_STUB_CA_MUST_BE_WITHIN_SAME_ASSEMBLY "The stub class '%1' specified in ManagedToNativeComInteropStubAttribute and interface '%2' must be from the same assembly."
    IDS_EE_INTEROP_STUB_CA_STUB_CLASS_MUST_NOT_BE_GENERIC "The type '%1' specified in ManagedToNativeComInteropStubAttribute cannot be a generic type."
    IDS_EE_INTEROP_STUB_CA_STUB_CLASS_MUST_NOT_BE_INTERFACE "The type '%1' specified in ManagedToNativeComInteropStubAttribute cannot be an interface."
    IDS_EE_INTEROP_STUB_CA_STUB_METHOD_MISSING "Cannot find stub method '%1' in '%2' as specified in ManagedToNativeComInteropStubAttribute. Please make sure the stub method is static, non-generic, and has the expected name and signature."
    IDS_EE_INTEROP_STUB_CA_NO_ACCESS_TO_STUB_METHOD "The interop method '%1' cannot access the stub method '%2' specified in ManagedToNativeComInteropStubAttribute. Please make sure they have compatible access modifiers and security accessibility."
#endif // FEATURE_COMINTEROP

#ifdef FEATURE_COMINTEROP
    IDS_EE_STRUCTLAYOUT_WINRT                   "Windows Runtime value types must have sequential layout."
    IDS_EE_PRESERVESIG_WINRT                    "The PreserveSigAttribute may not be used on Windows Runtime methods."
    IDS_EE_DELEGATEPINVOKE_WINRT                "Windows Runtime delegates may not be used for PInvoke interop."
    IDS_EE_WINRT_IENUMERABLE_BAD_CALL           "There is not enough information to call IEnumerable.GetEnumerator on a Windows Runtime object, please cast the object to IEnumerable<T> first."
    IDS_EE_WINRT_IENUMERABLE_BAD_CAST           "There is not enough information to cast a Windows Runtime object to IEnumerable, please cast the object to IEnumerable<T> first."
    IDS_EE_WINRT_INTERFACE_WITHOUT_GUID    		"Windows Runtime interface '%1' in assembly '%2' must have a valid GUID."
    IDS_EE_WINRT_IID_ILLEGALTYPE                "Unable to compute GUID for type '%1' because the instantiation contains types that are not supported by Windows Runtime."
    IDS_EE_WINRT_IID_NODEFAULTINTERFACE         "Unable to compute GUID because type '%1' does not have a default Windows Runtime interface."
    IDS_EE_WINRT_ATTRIBUTES_NOT_INVOKABLE       "Cannot construct type '%1'.  Windows Runtime attribute types are not constructable."
    IDS_EE_WINRT_TYPE_NOT_REGISTERED            "Requested Windows Runtime type '%1' is not registered."
    IDS_EE_WINRT_NOT_FACTORY_FOR_TYPE           "Windows Runtime factory '%1' is not a factory for Windows Runtime type '%2'."
    IDS_EE_WINRT_INVALID_FACTORY_FOR_TYPE       "Windows Runtime type '%1' has a invalid Windows Runtime factory"
    IDS_EE_CANNOTCAST_NOMARSHAL                 "The Windows Runtime Object can only be used in the threading context where it was created, because it implements INoMarshal or has MarshalingBehaviorAttribute(MarshalingType.None) set."
    IDS_EE_WINRT_WEAKREF_BAD_TYPE               "The object resolved by a native IWeakReference has an incompatible type for its managed WeakReference instance.\r\nExpected WeakReference target type: '%1'\r\nNative IWeakReference returned type: '%2'"
#endif // FEATURE_COMINTEROP

    IDS_EE_INTEROP_CODE_SIZE_COMMENT        "Code size"

    IDS_EE_ADUNLOAD_IN_FINALIZER            "AppDomain cannot be unloaded during object finalization."
    IDS_EE_ADUNLOAD_DEFAULT                 "The default domain cannot be unloaded."
    IDS_EE_ADUNLOAD_CANT_UNWIND_THREAD      "AppDomain cannot be unloaded because the thread '%1' cannot be unwound out of it."
    
    IDS_CLASSLOAD_TYPEWRONGNUMGENERICARGS      "The generic type '%1' was used with the wrong number of generic arguments in assembly '%2'."
    IDS_CLASSLOAD_INVALIDINSTANTIATION    "The generic type '%1' was used with an invalid instantiation in assembly '%2'."
    IDS_CLASSLOAD_VARIANCE_IN_METHOD_ARG    "Could not load type '%1' from assembly '%2' because a covariant or contravariant type parameter was used illegally in the signature for an argument in method '%3'."
    IDS_CLASSLOAD_VARIANCE_IN_METHOD_RESULT "Could not load type '%1' from assembly '%2' because a covariant or contravariant type parameter was used illegally in the signature for the result type in method '%3'."
    IDS_CLASSLOAD_VARIANCE_IN_INTERFACE     "Could not load type '%1' from assembly '%2' because a covariant or contravariant type parameter was used illegally in an inherited interface."
    IDS_CLASSLOAD_VARIANCE_IN_CONSTRAINT    "Could not load type '%1' from assembly '%2' because a covariant or contravariant type parameter was used illegally in a type parameter constraint in method '%3'."
    IDS_CLASSLOAD_VARIANCE_CLASS            "Could not load type '%1' from assembly '%2' because it declares a covariant or contravariant type parameter and is not an interface or delegate."
    IDS_CLASSLOAD_BADVARIANCE               "Could not load type '%1' from assembly '%2' because it uses an illegal variance annotation on a type parameter."
    IDS_CLASSLOAD_ENUM_EXTRA_GENERIC_TYPE_PARAM "Enumerated types cannot have any generic type parameters, beyond any inherited from their enclosing type (for nested enums)."
	IDS_CLASSLOAD_GENERICTYPE_RECURSIVE     "Could not load type '%1' from assembly '%2' because it has recursive generic definition."
    IDS_CLASSLOAD_TOOMANYGENERICARGS        "Could not load type '%1' from assembly '%2'. Internal limitation: Too many generic arguments."

    IDS_CLASSLOAD_GENERAL                   "Could not load type '%1' from assembly '%2'."
    IDS_CLASSLOAD_TYPESPEC                  "Could not load TypeSpec from assembly '%2'."
    IDS_CLASSLOAD_SEALEDPARENT              "Could not load type '%1' from assembly '%2' because the parent type is sealed."
    IDS_CLASSLOAD_BADFORMAT                 "Could not load type '%1' from assembly '%2' because the format is invalid."
    IDS_CLASSLOAD_BYREFARRAY                "Could not create array type '%1' from assembly '%2' because the element type is ByRef."
    IDS_CLASSLOAD_BYREFLIKEARRAY            "Could not create array type '%1' from assembly '%2' because the element type is ByRef-like."
    IDS_CLASSLOAD_MISSINGMETHOD             "Could not load type '%1' from assembly '%2' because the method '%3' could not be loaded."
    IDS_CLASSLOAD_FIELDTOOLARGE             "Size of field of type '%1' from assembly '%2' is too large."
    IDS_CLASSLOAD_CANTEXTEND                "Type '%1' from assembly '%2' cannot extend from any other type."
    IDS_CLASSLOAD_STATICVIRTUAL             "Method '%3' in type '%1' from assembly '%2' cannot be a static and a virtual."
    IDS_CLASSLOAD_REDUCEACCESS              "Derived method '%3' in type '%1' from assembly '%2' cannot reduce access."
    IDS_CLASSLOAD_BADPINVOKE                "Could not get PINVOKE information for method '%3' in type '%1' from assembly '%2'."
    IDS_CLASSLOAD_VALUECLASSTOOLARGE        "Array of type '%1' from assembly '%2' cannot be created because base value type is too large."
    IDS_CLASSLOAD_NOTIMPLEMENTED            "Method '%3' in type '%1' from assembly '%2' does not have an implementation."

    IDS_CLASSLOAD_PARENTNULL                "Could not load type '%1' from assembly '%2' because the parent does not exist."
    IDS_CLASSLOAD_PARENTINTERFACE           "Could not load type '%1' from assembly '%2' because the parent type is an interface."
    IDS_CLASSLOAD_ENCLOSING                 "Could not load type '%1' from assembly '%2' because its enclosing type is not specified with a type definition."
    IDS_CLASSLOAD_INTERFACEOBJECT           "Could not load interface '%1' from assembly '%2' because it must extend from Object."
    IDS_CLASSLOAD_INTERFACENULL             "Could not load type '%1' from assembly '%2' because the interface does not exist."
    IDS_CLASSLOAD_INTERFACE_NO_ACCESS       "Type '%1' from assembly '%2' is attempting to implement an inaccessible interface."
    IDS_CLASSLOAD_NOTINTERFACE              "Could not load type '%1' from assembly '%2' because it attempts to implement a class as an interface."
    IDS_CLASSLOAD_VALUEINSTANCEFIELD        "Could not load the value type '%1' from assembly '%2' because it has an instance field of itself."

    IDS_CLASSLOAD_BYREFLIKE_STATICFIELD     "A ByRef-like type cannot be used as the type for a static field."
    IDS_CLASSLOAD_BYREFLIKE_INSTANCEFIELD   "A ByRef-like type cannot be used as the type for an instance field in a non-ByRef-like type."

    IDS_CLASSLOAD_RANK_TOOLARGE             "'%1' from assembly '%2' has too many dimensions."
    IDS_CLASSLOAD_BAD_UNMANAGED_RVA         "Native method '%3' on type '%1' from assembly '%2' is not supported."
    IDS_CLASSLOAD_NOMETHOD_NAME             "Type '%1' from assembly '%2' has a method with no name."

    IDS_CLASSLOAD_ZEROSIZE                  "Type '%1' from assembly '%2' has zero size."
    IDS_CLASSLOAD_EXPLICIT_LAYOUT           "Could not load type '%1' from assembly '%2' because it contains an object field at offset %3 that is incorrectly aligned or overlapped by a non-object field."
    IDS_CLASSLOAD_BADSPECIALMETHOD          "Constructor '%3' on type '%1' from assembly '%2' does not have the correct name or signature."
    IDS_CLASSLOAD_MI_DECLARATIONNOTFOUND    "Method override '%3' on type '%1' from assembly '%2' cannot find a method to replace."
    IDS_CLASSLOAD_MI_MULTIPLEOVERRIDES      "Method '%3' on type '%1' from assembly '%2' is overriding a method that has been overridden."
    IDS_CLASSLOAD_MI_ACCESS_FAILURE         "Method '%3' on type '%1' from assembly '%2' is overriding a method that is not visible from that assembly."
    IDS_CLASSLOAD_MI_BADSIGNATURE           "Method '%3' on type '%1' from assembly '%2' tried to override a method with a different signature."
    IDS_CLASSLOAD_MI_NOTIMPLEMENTED         "Type '%1' from assembly '%2' tried to override method '%3' but does not implement or inherit that method."
    IDS_CLASSLOAD_MI_MUSTBEVIRTUAL          "Method '%3' on type '%1' from assembly '%2' must be virtual to implement a method on an interface or super type."
    IDS_CLASSLOAD_MI_BAD_SIG                "Type '%1' from assembly '%2' contains an invalid method implementation signature."
    IDS_CLASSLOAD_MI_FINAL_IMPL             "Method implementation on an interface '%1' from assembly '%2' must be a final method."
    IDS_CLASSLOAD_AMBIGUOUS_OVERRIDE        "Could not call method '%1' on interface '%2' with type '%3' from assembly '%4' because there are multiple incompatible interface methods overriding this method."
    IDS_CLASSLOAD_UNSUPPORTED_DISPATCH      "Could not make constrained call to method '%1' on interface '%2' with type '%3' from assembly '%4'. Dispatch to default interface methods is not supported in this situation."

    IDS_CLASSLOAD_MISSINGMETHODRVA          "Could not load type '%1' from assembly '%2' because the method '%3' has no implementation (no RVA)."
    SECURITY_E_INCOMPATIBLE_EVIDENCE        "Assembly '%1' already loaded without additional security evidence."
    SECURITY_E_INCOMPATIBLE_SHARE           "Assembly '%1' security permission grant set is incompatible between appdomains."
    SECURITY_E_UNVERIFIABLE                 "Unverifiable assembly '%1' failed policy check."
    IDS_CLASSLOAD_BAD_FIELD                 "Type '%1' from assembly '%2' has a field of an illegal type."
    IDS_CLASSLOAD_MI_ILLEGAL_BODY           "Body referenced in a method implementation must be defined in the same type.  Type: '%1'.  Assembly: '%2'."
    IDS_CLASSLOAD_MI_ILLEGAL_TOKEN_BODY     "Body token used in a method implementation is out of range.  Type: '%1'.  Assembly: '%2'."
    IDS_CLASSLOAD_MI_ILLEGAL_TOKEN_DECL     "Declaration token used in a method implementation is out of range.  Type: '%1'.  Assembly: '%2'."
    IDS_CLASSLOAD_MI_SEALED_DECL            "Declaration referenced in a method implementation cannot be on a sealed type.  Type: '%1'.  Assembly: '%2'."
    IDS_CLASSLOAD_MI_FINAL_DECL             "Declaration referenced in a method implementation cannot be a final method.  Type: '%1'.  Assembly: '%2'."
    IDS_CLASSLOAD_MI_NONVIRTUAL_DECL        "Declaration referenced in a method implementation must be a virtual method.  Type: '%1'.  Assembly: '%2'."
    IDS_CLASSLOAD_MI_BODY_DECL_MISMATCH     "Signature of the body and declaration in a method implementation do not match.  Type: '%1'.  Assembly: '%2'."
    IDS_CLASSLOAD_MI_MISSING_SIG_BODY       "Signature for the body in a method implementation cannot be found.  Type: '%1'.  Assembly: '%2'."
    IDS_CLASSLOAD_MI_MISSING_SIG_DECL       "Signature for the declaration in a method implementation cannot be found.  Type: '%1'.  Assembly: '%2'."

    IDS_CLASSLOAD_EQUIVALENTSTRUCTMETHODS   "Could not load the structure '%1' from assembly '%2'. The structure is marked as eligible for type equivalence, but it has a method."
    IDS_CLASSLOAD_EQUIVALENTSTRUCTFIELDS    "Could not load the structure '%1' from assembly '%2'. The structure is marked as eligible for type equivalence, but it has a static or non-public field."
    IDS_CLASSLOAD_EQUIVALENTBADTYPE         "Could not load type '%1' from assembly '%2'. The type is marked as eligible for type equivalence, but either it has generic parameters, or it is not a structure, COM imported interface, enumeration, or delegate."
    IDS_EE_CODEEXECUTION_CONTAINSGENERICVAR "Could not execute the method because either the method itself or the containing type is not fully instantiated."
    IDS_CLASSLOAD_WRONGCPU                  "Could not load file or assembly '%1'. This assembly was compiled for a different processor."

    IDS_CANNOT_MARSHAL                      "Type '%1' cannot be marshaled as an unmanaged structure; no meaningful size or offset can be computed."
    
    IDS_INVALID_REDIM                       "Illegal attempt to replace or redimension a fixed or locked SafeArray."

    IDS_INVALID_PINVOKE_CALLCONV            "Invalid unmanaged calling convention: must be one of stdcall, cdecl, or thiscall."
    IDS_NOLAYOUT_IN_EMBEDDED_VALUECLASS     "Type could not be marshaled because an embedded valuetype has no layout information."
    IDS_CLASSLOAD_NSTRUCT_EXPLICIT_OFFSET   "Could not load type '%1' from assembly '%2' because field '%3' was not given an explicit offset."
    IDS_WRONGSIZEARRAY_IN_NSTRUCT           "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."
    
    IDS_EE_INVALIDLCIDPARAM                 "The value of the LCID conversion attribute must not exceed the number of parameters."

    IDS_EE_INVALIDCOMSOURCEITF              "The list of COM source interfaces for type '%1' contains non interface or generic type '%2'."
    IDS_EE_CANNOT_COERCE_BYREF_VARIANT      "Object cannot be coerced to the original type of the ByRef VARIANT it was obtained from."
    IDS_EE_WRAPPER_MUST_HAVE_DEF_CONS       "The new wrapper type must have an empty constructor."
    IDS_EE_INVALID_STD_DISPID_NAME          "Standard DISPID member name is formed incorrectly.  The name must be in the following format: [DISPID=XXX]."
    IDS_EE_NO_IDISPATCH_ON_TARGET           "COM target does not implement IDispatch."
    IDS_EE_NON_STD_NAME_WITH_STD_DISPID     "All named parameters must be specified as [DISPID=XXX] when invoking on a standard members specified as [DISPID=XXX}."
    IDS_EE_INVOKE_NEW_ENUM_INVALID_RETURN   "Variant returned from an Invoke call with a DISPID of -4 does not contain a valid IUnknown pointer."
    IDS_EE_COM_OBJECT_RELEASE_RACE          "COM object that has been separated from its underlying RCW cannot be used. The COM object was released while it was still in use on another thread."
    IDS_EE_COM_OBJECT_NO_LONGER_HAS_WRAPPER "COM object that has been separated from its underlying RCW cannot be used."
    IDS_EE_CALLBACK_NOT_CALLED_FROM_CCTOR   "Function can only be called from inside the class constructor of a class derived from a COM imported class."
    IDS_EE_CALLBACK_ALREADY_REGISTERED      "Base type has already registered a type creation callback."
    IDS_EE_CANNOTCAST                       "Unable to cast object of type '%1' to type '%2'."
    
    IDS_EE_CANNOTCASTSAME                   "[A]%1 cannot be cast to [B]%2. %3. %4."
    IDS_EE_CANNOTCAST_HELPER_PATH           "Type %s originates from '%s' in the context '%s' at location '%s'"
    IDS_EE_CANNOTCAST_HELPER_BYTE           "Type %s originates from '%s' in the context '%s' in a byte array"
    IDS_EE_NOTISOMORPHIC                    "Object contains non-primitive or non-blittable data."
    IDS_EE_INVALID_VT_FOR_CUSTOM_MARHALER   "Type of the VARIANT specified for a parameter with a custom marshaler is not supported by the custom marshaler."
    IDS_EE_BAD_COMEXTENDS_CLASS             "Types extending from COM objects should override all methods of an interface implemented by the base COM class."
    IDS_EE_INTERFACE_NOT_DISPATCH_BASED     "The interface does not support late bound calls since it does not derive from IDispatch."
    IDS_EE_MARSHAL_UNMAPPABLE_CHAR          "Cannot marshal: Encountered unmappable character."
    
    // Errors associated with parsing security custom attributes at compile time.
    CORSECATTR_E_BAD_ACTION                 "Security custom attribute has invalid SecurityAction."
    
    IDS_EE_COPY_OUTOFRANGE                   "Requested range extends past the end of the array."
    IDS_EE_ARRAYWITHOFFSETOVERFLOW           "ArrayWithOffset: offset exceeds array size."
    IDS_EE_NOCUSTOMMARSHALER                "A call to GetInstance() for custom marshaler '%1' returned null, which is not allowed."
    IDS_EE_SIZECONTROLOUTOFRANGE            "Array size control parameter index is out of range."
    IDS_EE_SIZECONTROLBADTYPE               "Array size control parameter type not supported."
    IDS_EE_DUPLICATE_DECLSEC                "Multiple permission sets specified with the same SecurityAction."
    IDS_EE_SAFEARRAYSZARRAYMISMATCH         "SafeArray cannot be marshaled to this array type because it has either nonzero lower bounds or more than one dimension."

    IDS_EE_WINRT_LOADFAILURE                "Could not find Windows Runtime type '%1'."
    IDS_EE_WINRT_THIRDPARTY_NOTSUPPORTED    "Types from custom Windows Runtime components are not supported in desktop applications."

    IDS_EE_ASSEMBLY_GETTYPE_CANNONT_HAVE_ASSEMBLY_SPEC "Type names passed to Assembly.GetType() must not specify an assembly."
    IDS_EE_CANNOT_HAVE_ASSEMBLY_SPEC        "Unexpected assembly-qualifier in a typename."
    IDS_EE_NEEDS_ASSEMBLY_SPEC              "Typename needs an assembly qualifier."

    IDS_EE_FILELOAD_ERROR_GENERIC           "Could not load file or assembly '%1'. %2"

    IDS_EE_LOCAL_COGETCLASSOBJECT_FAILED    "Retrieving the COM class factory for component with CLSID %2 failed due to the following error: %1 %3."
    IDS_EE_REMOTE_COGETCLASSOBJECT_FAILED   "Retrieving the COM class factory for remote component with CLSID %2 from machine %3 failed due to the following error: %1 %3."

    IDS_EE_CREATEINSTANCE_FAILED            "Creating an instance of the COM component with CLSID %2 from the IClassFactory failed due to the following error: %1 %3."
    IDS_EE_CREATEINSTANCE_LIC_FAILED        "Creating an instance of the licensed COM component with CLSID %2 from the IClassFactory failed due to the following error: %1 %3."
    IDS_EE_CREATEINSTANCEFROMAPP_FAILED     "Creating an instance of the COM component with CLSID %2 using CoCreateInstanceFromApp failed due to the following error: %1 %3. Please make sure your COM object is in the allowed list of CoCreateInstanceFromApp."

    IDS_EE_RCW_INVALIDCAST_ITF              "Unable to cast COM object of type '%2' to interface type '%3'. This operation failed because the QueryInterface call on the COM component for the interface with IID '%4' failed due to the following error: %1."
    IDS_EE_RCW_INVALIDCAST_EVENTITF         "Unable to cast COM object of type '%2' to event interface type '%3'. This operation failed because the QueryInterface call on the COM component for the interface with IID '%4' failed due to the following error: '%1' and the COM component does not support the source interface with IID '%5'."
    IDS_EE_RCW_INVALIDCAST_IENUMERABLE      "Unable to cast COM object of type '%2' to interface type '%3'. This operation failed because the QueryInterface call on the COM component for the interface with IID '%4' failed due to the following error: '%1' and the COM component does not support IDispatch::Invoke calls for DISPID_NEWENUM."
    IDS_EE_RCW_INVALIDCAST_MNGSTDITF        "Unable to cast COM object of type '%2' to standard managed interface type '%3'. This operation failed because the QueryInterface call on the COM component for the managed interface with IID '%4' failed due to the following error: '%1' and the QueryInterface call for the native interface with IID '%5' that corresponds to this managed interface failed due to the following error: %6."
    IDS_EE_RCW_INVALIDCAST_COMOBJ_TO_MD     "Unable to cast COM object of type '%1' to class type '%2'. COM components that enter the CLR and do not support IProvideClassInfo or that do not have any interop assembly registered will be wrapped in the __ComObject type. Instances of this type cannot be cast to any other class; however they can be cast to interfaces as long as the underlying COM component supports QueryInterface calls for the IID of the interface."
    IDS_EE_RCW_INVALIDCAST_TO_NON_COMOBJTYPE "Unable to cast COM object of type '%1' to class type '%2'. Instances of types that represent COM components cannot be cast to types that do not represent COM components; however they can be cast to interfaces as long as the underlying COM component supports QueryInterface calls for the IID of the interface."
    IDS_EE_RCW_INVALIDCAST_MD_TO_MD         "Unable to cast COM object of type '%1' to class type '%2'. Instances of types that represent COM components cannot be cast to different types that represent COM components; however they can be cast to interfaces as long as the underlying COM component supports QueryInterface calls for the IID of the interface."

    IDS_EE_GENERIC                          "%1"

    IDS_EE_MISSING_FIELD                    "Field not found: '%1'."
    IDS_EE_MISSING_METHOD                   "Method not found: '%1'."
    
    IDS_EE_NO_IDISPATCH                     "This object cannot be marshaled as an IDispatch."
    IDS_EE_NO_BACKING_CLASS_FACTORY         "An instance of the __ComObject type cannot be created unless the type has been obtained using GetTypeFromProgID or GetTypeFromCLSID."

    IDS_EE_SIGTOOCOMPLEX                    "Internal limitation: method signature is too complex or too large."
    IDS_EE_STRUCTTOOCOMPLEX                 "Internal limitation: structure is too complex or too large."
    IDS_EE_STRUCTARRAYTOOLARGE              "Array size exceeds addressing limitations."
    IDS_EE_TOOMANYFIELDS                    "Internal limitation: too many fields."

    IDS_EE_UNHANDLED_EXCEPTION              "Unhandled Exception:"
    IDS_EE_EXCEPTION_TOSTRING_FAILED        "Cannot print exception string because Exception.ToString() failed."

    IDS_EE_THREAD_ABORT                     "Thread was being aborted."
    IDS_EE_THREAD_INTERRUPTED               "Thread was interrupted from a waiting state."
    IDS_EE_OUT_OF_MEMORY                    "Insufficient memory to continue the execution of the program."

    IDS_EE_OUT_OF_MEMORY_WITHIN_RANGE       "Insufficient memory within specified address space range to continue the execution of the program."

    IDS_EE_ARRAY_DIMENSIONS_EXCEEDED        "Array dimensions exceeded supported range."

    IDS_EE_PROFILING_FAILURE                "Profiling failure"


    IDS_EE_THREAD_NOTSTARTED                "Thread has not been started."
    IDS_EE_STRING_TOOLONG                   "Marshaler restriction: Excessively long string."

    IDS_EE_VARARG_NOT_SUPPORTED             "Vararg calling convention not supported."

    IDS_EE_INVALID_CA                       "Invalid custom attribute provided."
    IDS_EE_INVALID_CA_EX                    "Invalid custom attribute provided: '%1'"

    IDS_EE_THREADSTART_STATE                "Thread is running or terminated; it cannot restart."
    IDS_EE_THREAD_CANNOT_GET                "Unable to retrieve thread information."
    IDS_EE_THREAD_DEAD_PRIORITY             "Thread is dead; priority cannot be accessed."
    IDS_EE_THREAD_PRIORITY_FAIL             "Unable to set thread priority."
    IDS_EE_THREAD_DEAD_STATE                "Thread is dead; state cannot be accessed."
    IDS_EE_THREAD_BAD_STATE                 "Thread in invalid state."
    IDS_EE_THREAD_ABORT_WHILE_SUSPEND       "Thread is suspended; attempting to abort."
    IDS_EE_NOVARIANTRETURN                  "PInvoke restriction: cannot return variants."
    IDS_EE_THREAD_DEADLOCK_VICTIM           "The current thread has been chosen as a deadlock victim."

    IDS_EE_PATH_TOO_LONG                    "The path is too long after being fully qualified.  Make sure the full path is less than 260 characters and the directory name is less than 248 characters."
    
    IDS_EE_INVALID_SAFEARRAY                "Specified SAFEARRAY is invalid."

    IDS_EE_METHOD_NOT_FOUND_ON_EV_PROV      "Method '%1' of COM event interface '%2' is not present on event provider '%3'."
    IDS_EE_BAD_COMEVENTITF_CLASS            "Methods on COM event interfaces must take a single delegate derived class as a parameter and have a void return type."

    IDS_EE_ICUSTOMMARSHALERNOTIMPL          "Custom marshaler '%1' does not implement the ICustomMarshaler interface."
    IDS_EE_GETINSTANCENOTIMPL               "Custom marshaler '%1' does not implement a static GetInstance method that takes a single string parameter and returns an ICustomMarshaler."

    IDS_CLASSLOAD_COMIMPCANNOTHAVELAYOUT    "COM import type '%1' from assembly '%2' cannot have layout information."
    IDS_EE_INVALIDCOMDEFITF                 "Type '%1' has an invalid default COM interface: '%2'."
    IDS_EE_COMDEFITFNOTSUPPORTED            "Type '%1' does not support the specified default COM interface: '%2'"

    IDS_EE_GUID_REPRESENTS_NON_VC           "Type '%1' that has the requested GUID is not a value class."
    IDS_EE_CANNOT_MAP_TO_MANAGED_VC         "The specified record cannot be mapped to a managed value class."

    IDS_EE_SAFEHANDLECLOSED                 "Safe handle has been closed"
    IDS_EE_SAFEHANDLECANNOTSETHANDLE        "Safe handle's handle field can only be set if the safe handle is not closed and has a ref count of 1."

    IDS_EE_SH_FIELD_INVALID_OPERATION       "Structures containing SafeHandle fields are not allowed in this operation."
    IDS_EE_CANNOT_CREATE_SAFEHANDLE_FIELD   "SafeHandle fields cannot be created from an unmanaged handle."
    IDS_EE_SH_IN_VARIANT_NOT_SUPPORTED      "SafeHandle derived types cannot be stored in Variants."
    
    IDS_EE_CANNOT_CREATE_CRITICALHANDLE_FIELD "CriticalHandle fields cannot be created from an unmanaged handle."
    IDS_EE_CH_IN_VARIANT_NOT_SUPPORTED      "CriticalHandle derived types cannot be stored in Variants."
    
    IDS_EE_VAR_WRAP_IN_VAR_NOT_SUPPORTED    "VariantWrappers cannot be stored in Variants."
    IDS_EE_RECORD_NON_SUPPORTED_FIELDS      "The structure contains fields that are not supported in unmanaged records."

    IDS_CLASSLOAD_NSTRUCT_NEGATIVE_OFFSET   "Could not load type '%1' from assembly '%2' because field '%3' was given a negative offset."

    IDS_CLASSLOAD_OVERLAPPING_INTERFACES "The type '%1' in assembly '%2' has a contracting interface set for some instantiations"
    
    IDS_CLASSLOAD_32BITCLRLOADING64BITASSEMBLY "Attempted to load a 64-bit assembly on a 32-bit platform."

    IDS_CLASSLOAD_CONSTRAINT_MISMATCH_ON_IMPLICIT_OVERRIDE  "Method '%3' on type '%1' from assembly '%2' tried to implicitly override a method with weaker type parameter constraints."
    IDS_CLASSLOAD_CONSTRAINT_MISMATCH_ON_IMPLICIT_IMPLEMENTATION "Method '%3' on type '%1' from assembly '%2' tried to implicitly implement an interface method with weaker type parameter constraints."
    IDS_CLASSLOAD_CONSTRAINT_MISMATCH_ON_LOCAL_METHOD_IMPL "Method '%3' on type '%1' from assembly '%2' tried to explicitly implement a local method with weaker type parameter constraints."
    IDS_CLASSLOAD_CONSTRAINT_MISMATCH_ON_PARENT_METHOD_IMPL "Method '%3' on type '%1' from assembly '%2' tried to explicitly implement a parent method with weaker type parameter constraints."
    IDS_CLASSLOAD_CONSTRAINT_MISMATCH_ON_INTERFACE_METHOD_IMPL "Method '%3' on type '%1' from assembly '%2' tried to explicitly implement an interface method with weaker type parameter constraints."
    IDS_CLASSLOAD_EXPLICIT_GENERIC "Could not load type '%1' from assembly '%2' because generic types cannot have explicit layout."
    
    IDS_EE_COM_INVISIBLE_PARENT "This type has a ComVisible(false) parent in its hierarchy, therefore QueryInterface calls for IDispatch or class interfaces are disallowed."

    IDS_EE_COMIMPORT_METHOD_NO_INTERFACE    "Method '%1' in ComImport class '%2' must implement an interface method."
    IDS_EE_ATTEMPT_TO_CREATE_GENERIC_CCW    "Generic types cannot be marshaled to COM interface pointers."

    IDS_CLASSLOAD_BAD_METHOD_COUNT          "Metadata method count does not match method enumeration length for type '%1' from assembly '%2'."
    IDS_CLASSLOAD_BAD_FIELD_COUNT           "Metadata field count does not match field enumeration length for type '%1' from assembly '%2'."
    IDS_CLASSLOAD_MUST_BE_BYVAL             "Type '%1' from assembly '%2' must be declared as a value type to be used as a value type."
    IDS_CLASSLOAD_BAD_VARIANCE_SIG          "Type contains improperly formed type variance signature."
    IDS_CLASSLOAD_VARIANCE_IN_DELEGATE      "Could not load type '%1' from assembly '%2' because it declares a field in a covariant type."
    IDS_CLASSLOAD_TOO_MANY_METHODS          "Type '%1' from assembly '%2' contains more methods than the current implementation allows."
    IDS_EE_CODEEXECUTION_ASSEMBLY_FOR_PASSIVE_DOMAIN_ONLY "File '%1' was loaded in a passive domain in a manner that makes it unable to run."
    IDS_CLASSLOAD_MI_CANNOT_OVERRIDE        "Cannot override runtime implemented method '%3' on type '%1' from assembly '%2'."

    IDS_CLASSLOAD_COLLECTIBLEFIXEDVTATTR   "Collectible type '%1' has unsupported FixedAddressValueTypeAttribute applied to a field."
    IDS_EE_JIT_COMPILER_ERROR               "The JIT compiler encountered invalid IL code or an internal limitation."
    IDS_EE_OBJECT_TO_VARIANT_NOT_SUPPORTED  "Invalid managed/unmanaged type combination (Marshaling to and from COM VARIANTs isn't supported)."
    IDS_EE_OBJECT_TO_ITF_NOT_SUPPORTED      "Invalid managed/unmanaged type combination (Marshaling to and from COM interface pointers isn't supported)."

    IDS_E_FIELDACCESS                       "Attempt by method '%1' to access field '%2' failed.%3"
    IDS_E_METHODACCESS                      "Attempt by method '%1' to access method '%2' failed.%3"
    IDS_E_TYPEACCESS                        "Attempt by method '%1' to access type '%2' failed.%3"

    IDS_INVOKE_NULLREF_RETURNED             "The target method returned a null reference."

    IDS_EE_CANNOT_SET_INITONLY_STATIC_FIELD "Cannot set initonly static field '%1%' after type '%2' is initialized."
END

// These strings are used for Event Log Entry
STRINGTABLE DISCARDABLE
BEGIN
    IDS_ER_APPLICATION                       "Application: "
    IDS_ER_UNKNOWN                           "unknown"
    IDS_ER_FRAMEWORK_VERSION                 "CoreCLR Version: "
    IDS_ER_UNHANDLEDEXCEPTION                "Description: The process was terminated due to an unhandled exception."
    IDS_ER_UNHANDLEDEXCEPTIONMSG             "Exception Info: "
    IDS_ER_MANAGEDFAILFAST                   "Description: The application requested process termination through System.Environment.FailFast(string message)."
    IDS_ER_MANAGEDFAILFASTMSG                "Message: "
    IDS_ER_UNMANAGEDFAILFAST                 "Description: The process was terminated due to an internal error in the .NET Runtime "
    IDS_ER_STACK_OVERFLOW                    "Description: The process was terminated due to stack overflow."
    IDS_ER_STACK                             "Stack:"
    IDS_ER_WORDAT                            "at"
    IDS_ER_UNMANAGEDFAILFASTMSG              "at IP %1 (%2) with exit code %3."
    IDS_ER_UNHANDLEDEXCEPTIONINFO            "exception code %1, exception address %2"
    IDS_ER_MESSAGE_TRUNCATE                  "The remainder of the message was truncated."
    IDS_ER_CODECONTRACT_FAILED               "Description: The application encountered a bug.  A managed code contract (precondition, postcondition, object invariant, or assert) failed."
    IDS_ER_CODECONTRACT_DETAILMSG            "Contract details: "
END

STRINGTABLE DISCARDABLE 
BEGIN 
    IDS_COMPLUS_ERROR                        "CLR error: %lx.\n The program will now terminate."
    IDS_FATAL_ERROR                         "Fatal error"     
    IDS_ERROR                               "Error"
    
    IDS_DEBUG_UNHANDLEDEXCEPTION_IPC         "INTERNAL ERROR:\n\nUnhandled exception in Debugger::HandleIPCEvent.\n\nEvent ID=0x%x.\n\nException code=0x%08x, Eip=0x%08x.\n\nProcess ID=0x%x (%d), Thread ID=0x%x (%d).\n\n"
    IDS_DEBUG_UNHANDLED_EXCEPTION_MSG        "Application has generated an exception that could not be handled.\n\nProcess ID=0x%x (%d), Thread ID=0x%x (%d).\n\nClick OK to terminate the application.\nClick CANCEL to debug the application."
    IDS_DEBUG_USER_BREAKPOINT_MSG            "Application has encountered a user-defined breakpoint.\n\nProcess ID=0x%x (%d), Thread ID=0x%x (%d).\n\nClick ABORT to terminate the application.\nClick RETRY to debug the application.\nClick IGNORE to ignore the breakpoint."

END


// Verifier error messages
STRINGTABLE DISCARDABLE 
BEGIN
    VER_E_FIELD_SIG         "[field sig]"

    //@GENERICSVER: new generics related error messages
    VER_E_CIRCULAR_VAR_CONSTRAINTS "Method parent has circular class type parameter constraints."
    VER_E_CIRCULAR_MVAR_CONSTRAINTS "Method has circular method type parameter constraints."

END

// General prompt strings.
STRINGTABLE DISCARDABLE 
BEGIN
    IDS_RTL                             "RTL_False"    //  change this to RTL_True on Arabic/Hebrew system
END

// BAD_FORMAT_ASSERT error messages
STRINGTABLE DISCARDABLE
BEGIN
        BFA_INVALID_TOKEN_TYPE                  "Invalid token type."
        BFA_INVALID_TOKEN                       "Invalid token."
        BFA_UNABLE_TO_GET_NESTED_PROPS          "Unable to get nested type properties."
        BFA_METHOD_TOKEN_OUT_OF_RANGE           "Method token out of range."
        BFA_METHOD_NAME_TOO_LONG                "Method name too long."
        BFA_METHOD_IN_A_ENUM                    "Method in an Enum."
        BFA_METHOD_WITH_NONZERO_RVA             "Method with non-zero RVA in an Import."
        BFA_ABSTRACT_METHOD_WITH_RVA            "Abstract method with non-zero RVA."
        BFA_RUNTIME_METHOD_WITH_RVA             "Runtime-implemented method with non-zero RVA."
        BFA_INTERNAL_METHOD_WITH_RVA            "Internal call method with non_NULL RVA."
        BFA_AB_METHOD_IN_AB_CLASS               "Abstract method in non-abstract class."
        BFA_NONVIRT_AB_METHOD                   "Non-virtual abstract method."
        BFA_NONAB_NONCCTOR_METHOD_ON_INT        "Non-abstract, non-.cctor method in an interface."
        BFA_VIRTUAL_PINVOKE_METHOD              "Virtual PInvoke implemented method."
        BFA_VIRTUAL_STATIC_METHOD               "Virtual Static Method."
        BFA_VIRTUAL_INSTANCE_CTOR               "Virtual Instance Constructor."
        BFA_VIRTUAL_NONAB_INT_METHOD            "Virtual Non-Abstract Interface Method."
        BFA_NONVIRT_INST_INT_METHOD             "Nonvirtual Instance Interface Method."
        BFA_SYNC_METHOD_IN_VT                   "Synchronized Method in Value Type."
        BFA_NONSTATIC_GLOBAL_METHOD             "Non-Static Global Method."
        BFA_GLOBAL_INST_CTOR                    "Global Instance Constructor."
        BFA_BAD_PLACE_FOR_GENERIC_METHOD        "Generic method or method in generic class is internal call, PInvoke, or is defined in a COM Import class."
        BFA_GENERIC_METHOD_RUNTIME_IMPL         "Generic method is marked runtime-implemented."
        BFA_BAD_RUNTIME_IMPL                    "Bad use of Runtime Impl attribute."
        BFA_BAD_FLAGS_ON_DELEGATE               "Bad flags on delegate constructor."
        BFA_UNKNOWN_DELEGATE_METHOD             "Unknown runtime implemented delegate method."
        BFA_GENERIC_METHODS_INST                "Generic methods should always be mcInstantiated."
        BFA_BAD_FIELD_TOKEN                     "Field token out of range."
        BFA_INVALID_FIELD_ACC_FLAGS             "Invalid Field Access Flags."
        BFA_FIELD_LITERAL_AND_INIT              "Field is Literal and InitOnly."
        BFA_NONSTATIC_GLOBAL_FIELD              "Non-Static Global Field."
        BFA_INSTANCE_FIELD_IN_INT               "Instance Field in an Interface."
        BFA_INSTANCE_FIELD_IN_ENUM              "No Instance Field in an Enum."
        BFA_NONVIRT_NO_SEARCH                   "Non-virtual methods should not be searched."
        BFA_MANAGED_NATIVE_NYI                  "Managed native not presently supported."
        BFA_BAD_IMPL_FLAGS                      "Bad implementation flags."
        BFA_BAD_UNMANAGED_ENTRY_POINT           "Bad unmanaged code entry point."
        BFA_GENCODE_NOT_BE_VARARG               "Generic code may not be varargs."
        BFA_CANNOT_INHERIT_FROM_DELEGATE        "Could not load type '%1' from assembly '%2' because it cannot inherit directly from the delegate class."
        BFA_DELEGATE_CLASS_NOTSEALED            "Could not load type '%1' from assembly '%2' because delegate classes must be sealed."
        BFA_ENCLOSING_TYPE_NOT_FOUND            "Enclosing type(s) not found for type '%1' in assembly '%2'."
        BFA_ILLEGAL_DELEGATE_METHOD             "Illegal definition for runtime implemented delegate method."
        BFA_MISSING_DELEGATE_METHOD             "Missing definition for required runtime implemented delegate method."
        BFA_MULT_TYPE_SAME_NAME                 "Duplicate type with name '%1' in assembly '%2'."
        BFA_INVALID_METHOD_TOKEN                "Bad method token."
        BFA_ECALLS_MUST_BE_IN_SYS_MOD           "ECall methods must be packaged into a system module."
        BFA_CANT_GET_CLASSLAYOUT                "Could not get classlayout."
        BFA_CALLCONV_NOT_LOCAL_SIG              "Signature is not IMAGE_CEE_CS_CALLCONV_LOCAL_SIG."
        BFA_BAD_CLASS_TOKEN                     "Bad class token."
        BFA_BAD_IL_RANGE                        "Bad IL range."
        BFA_METHODDEF_WO_TYPEDEF_PARENT         "MethodDef without TypeDef as Parent."
        BFA_METHODDEF_PARENT_NO_MEMBERS         "MethodSpec or MemberRef has parent with no members."
        BFA_INVALID_TOKEN_IN_MANIFESTRES        "Invalid token saved in ManifestResource."
        BFA_EMPTY_ASSEMDEF_NAME                 "Empty assembly simple name."
        BFA_BAD_IL                              "Bad IL format."
        BFA_CLASSLOAD_VALUETYPEMISMATCH         "Could not load type '%1' from assembly '%2' due to value type mismatch."
        BFA_METHODDECL_NOT_A_METHODDEF          "Method declaration is not a methoddef."
        BFA_DUPLICATE_DELEGATE_METHOD           "Duplicate definition for runtime implemented delegate method."
        BFA_ECALLS_MUST_HAVE_ZERO_RVA           "Ecalls must have a 0 RVA."
        BFA_METADATA_CORRUPT                    "The metadata is corrupt."
        BFA_BAD_SIGNATURE                       "The signature is incorrect."
        BFA_TYPEREG_NAME_TOO_LONG               "Full Name of Typeref is too long."
        BFA_BAD_TYPEREF_TOKEN                   "Invalid Typeref token."
        BFA_BAD_CLASS_INT_CA                    "The ClassInterface custom attribute is invalid."
        BFA_BAD_CLASS_INT_CA_FORMAT             "ClassInterface custom attribute does not have the right format."
        BFA_BAD_COMPLUS_SIG                     "Illegal or unimplemented ELEM_TYPE in signature."
        BFA_BAD_ELEM_IN_SIZEOF                  "Bad element type in SizeOf."
        BFA_BAD_CA_HEADER                       "Malformed custom attribute header."
        BFA_BAD_STRING_TOKEN                    "Bad string token."
        BFA_BAD_STRING_TOKEN_RANGE              "No string associated with token."
        BFA_FIXUP_WRONG_PLATFORM                "Image has a platform-specific fixup type that is not compatible with this platform."
        BFA_UNEXPECTED_GENERIC_TOKENTYPE        "Token specifying generic type must be either a typeref or typedef."
        BFA_MDARRAY_BADRANK                     "Array rank may not be zero."
        BFA_SDARRAY_BADRANK                     "Single-dimensional array rank must be one."
        BFA_BAD_PACKING_SIZE                    "ClassLayout has invalid PackingSize; valid set of values is {1,2,4,...,128}."
        BFA_UNEXPECTED_ARRAY_TYPE               "Array type not expected here."
        BFA_BAD_VISIBILITY                      "Bad type visibility flag value."
        BFA_FAMILY_ON_GLOBAL                    "Family flag is not allowed on global functions."
        BFA_NOFIND_EXPORTED_TYPE                "Could not find exported type in metadata."
        BFA_NOT_AN_ARRAY                        "Expected array type."
        BFA_EXPECTED_METHODDEF_OR_MEMBERREF     "Generic member ref must be of type MethodDef or MemberRef."
        BFA_UNEXPECTED_FIELD_SIGNATURE          "An unexpected field signature was found."
        BFA_UNEXPECTED_TOKEN_AFTER_CLASSVALTYPE "A valid typedef or typeref token is expected to follow a ELEMENT_TYPE_CLASS or ELEMENT_TYPE_VALUETYPE."
        BFA_FNPTR_CANNOT_BE_A_FIELD             "A ELEMENT_TYPE_FNPTR cannot have a field signature."
        BFA_FNPTR_CANNOT_BE_GENERIC             "A ELEMENT_TYPE_FNPTR cannot be generic."
        BFA_UNEXPECTED_TOKEN_AFTER_GENINST      "A valid typedef or typeref token is expected to follow a ELEMENT_TYPE_GENERICINST."
        BFA_TYPEDBYREFCANNOTHAVEBYREF           "An ELEMENT_TYPE_TYPEDBYREF cannot have a ELEMENT_TYPE_BYREF modifier."
        BFA_REFERENCE_ASSEMBLY                  "Cannot load a reference assembly for execution."

#ifdef FEATURE_COMINTEROP
        BFA_WINRT_INVALID_NAMESPACE_FOR_TYPE    "Windows Runtime type '%1' has invalid namespace that does not begin with the file name in assembly '%2'."
#endif

END


// Profiler messages for event log
STRINGTABLE DISCARDABLE
BEGIN
        IDS_E_PROF_BAD_PATH                     "Loading profiler failed.  COR_ENABLE_PROFILING and COR_PROFILER were set properly, but COR_PROFILER_PATH was not.  COR_PROFILER_PATH must be set to the full path of the profiler DLL to load with no more than 260 charaters including the null terminator."
        IDS_E_PROF_NO_CLSID                     "Loading profiler failed.  COR_ENABLE_PROFILING was set properly, but COR_PROFILER was not.  COR_PROFILER must be set to the CLSID of the profiler to load."
        IDS_E_PROF_INTERNAL_INIT                "Loading profiler failed due to an internal profiling services initialization failure.  Profiler CLSID: '%s'.  HRESULT: 0x%x."
        IDS_E_PROF_BAD_CLSID                    "Loading profiler failed.  COR_PROFILER is set to an invalid CLSID: '%s'.  HRESULT: 0x%x."
        IDS_E_PROF_NO_CALLBACK_IFACE            "Loading profiler failed.  COR_PROFILER is set to a CLSID of a COM object that does not implement the interface GUID (IID) requested by the CLR.  This often indicates that the profiler does not support this version of the CLR.  Profiler CLSID: '%s'.  Requested IID: '%s'."
        IDS_E_PROF_CCI_FAILED                   "Loading profiler failed during CoCreateInstance.  Profiler CLSID: '%s'.  HRESULT: 0x%x."
        IDS_E_PROF_INIT_CALLBACK_FAILED         "Loading profiler failed.  The profiler COM object was instantiated, but the profiler failed during its initialization callback.  Profiler CLSID: '%s'.  HRESULT: 0x%x."
        IDS_PROF_SUPPLEMENTARY_INFO             "Process ID (decimal): %d.  Message ID: [0x%x]."
        IDS_PROF_LOAD_COMPLETE                  "The profiler was loaded successfully.  Profiler CLSID: '%s'."
        IDS_E_PROF_ATTACH_INIT                  "There was a failure initializing profiling API attach infrastructure.  This process will not allow a profiler to attach.  HRESULT: 0x%x."
        IDS_E_PROF_ATTACHTHREAD_INIT            "Loading profiler failed.  Failed creating interprocess communication infrastructure.  HRESULT: 0x%x."
        IDS_E_PROF_CONNECT_TO_TRIGGER           "Loading profiler failed.  Unable to connect to the process that is trying to request the attach.  HRESULT: 0x%x."
        IDS_E_PROF_NO_ATTACH_REQ                "Loading profiler failed.  The inter-process communication mechanism was initialized, but an attach request was not received. HRESULT: 0x%x."
        IDS_E_PROF_PIPE_RCV                     "Loading profiler failed.  Failed trying to receive from out of process a request to attach a profiler.  HRESULT: 0x%x."
        IDS_E_PROF_NOT_ATTACHABLE               "Loading profiler failed.  The profiler COM object was instantiated, but the profiler does not support attaching to a live process.  The profiler must be loaded at application startup by using a launcher program included with the profiler (if any) or by setting the COR_ENABLE_PROFILING and COR_PROFILER environment variables before launching the application to be profiled.  Profiler CLSID: '%s'"
        IDS_E_PROF_UNHANDLED_EXCEPTION_ON_LOAD  "Loading profiler failed.  There was an unhandled exception while trying to instantiate the profiler COM object.  Please ensure the CLSID is associated with a valid profiler designed to work with this version of the runtime.  Profiler CLSID: '%s'."
        IDS_E_PROF_INVALID_MSG                  "Loading profiler failed.  Received an improperly formatted attach request."
        IDS_E_PROF_PROFILER_ALREADY_ACTIVE      "Loading profiler failed.  A profiler is already loaded, so the request to attach another profiler was denied."
        IDS_PROF_ATTACH_REQUEST_RECEIVED        "The CLR received a request to attach a profiler. Profiler CLSID: '%s'."
        IDS_PROF_DETACH_INITIATED               "The profiler currently in use has requested to be detached from the process.  The CLR has disabled communication with the profiler and will unload the profiler when it is safe to do so."
        IDS_PROF_DETACH_COMPLETE                "The CLR has fully detached and unloaded the profiler."
        IDS_PROF_DETACH_THREAD_ERROR            "There was an internal failure in the profiling API detach infrastructure.  The profiler will not be able to be detached.  Error code: %d."
        IDS_PROF_CANCEL_ACTIVATION              "The profiler has requested that the CLR instance not load the profiler into this process.  Profiler CLSID: '%s'."
        IDS_PROF_V2PROFILER_DISABLED            "Loading profiler failed.   The profiler that was configured to load was designed for an older version of the CLR.  You can use the COMPlus_ProfAPI_ProfilerCompatibilitySetting environment variable to allow older profilers to be loaded by the current version of the CLR.  Please consult the documentation for information on how to use this environment variable, and the risks associated with it.  Profiler CLSID: '%s'."
        IDS_PROF_V2PROFILER_ENABLED             "A profiler designed for an older version of the CLR was loaded because of the environment variable setting below.  Older profilers will continue to work in many cases, but if you encounter problems, please consider upgrading the profiler or changing the setting of the environment variable.  Please consult the documentation for information on how to use this environment variable, and the risks associated with it.  Environment variable setting: %s=%s.  Profiler CLSID: '%s'."
        IDS_PROF_PROFILER_DISABLED              "Profilers will not be loaded by the current version of the CLR because of the environment variable setting below.  Please consult the documentation for information on how to use this environment variable, and the risks associated with it.  Environment variable setting: %s=%s. Profiler CLSID: '%s'."
        IDS_E_PROF_TIMEOUT_WAITING_FOR_CONCURRENT_GC    "Profiler timed out on waiting for concurrent GC to finish after '%d' milliseconds. Please configure your profiler to increase its attaching time out value or consult the documentation for the COMPlus_ProfAPI_AttachProfilerMinTimeoutInMs environment variable and try again. Profiler CLSID: '%s'."
  END




STRINGTABLE DISCARDABLE 
BEGIN
    IDS_EE_BADMARSHAL_TYPE_ANSIBSTR                   "Marshalling as AnsiBStr is not supported"
    IDS_EE_BADMARSHAL_TYPE_VBBYVALSTR                 "Marshalling as VBByRefString is not supported"
    IDS_EE_BADMARSHAL_TYPE_REFERENCECUSTOMMARSHALER   "Custom marshalers are not supported"
    IDS_EE_BADMARSHAL_TYPE_VARIANTASOBJECT            "Marshalling between VARIANT and System.Object is not supported"
    IDS_EE_BADMARSHAL_TYPE_ASANYA                     "Marshalling arbitrary types is not supported"
    IDS_EE_BADMARSHAL_TYPE_IDISPATCH                  "Marshalling as IDispatch is not supported"
    IDS_EE_ERROR_IDISPATCH                            "IDispatch and IDispatchEx are not supported"
    IDS_EE_ERROR_COM                                  "COM is not supported"
END

STRINGTABLE DISCARDABLE 
BEGIN
    IDS_HOST_ASSEMBLY_RESOLVER_ASSEMBLY_ALREADY_LOADED_IN_CONTEXT "Assembly with same name is already loaded"
    IDS_HOST_ASSEMBLY_RESOLVER_DYNAMICALLY_EMITTED_ASSEMBLIES_UNSUPPORTED "Dynamically emitted assemblies are unsupported during host-based resolution."
    IDS_HOST_ASSEMBLY_RESOLVER_INCOMPATIBLE_BINDING_CONTEXT "Assembly is already bound to an incompatible binding context."
    IDS_HOST_ASSEMBLY_RESOLVER_INCOMPATIBLE_TPA_BINDING_CONTEXT "Default binding context is already attached to managed load context."
END

STRINGTABLE DISCARDABLE 
BEGIN
    IDS_NATIVE_IMAGE_CANNOT_BE_LOADED_MULTIPLE_TIMES "Native image cannot be loaded multiple times"
END

//
// Descriptions for FACILITY_URT hresults. None of these may be parameterized.
//
// These strings are accessed by the GetHRMsg() function in ex.cpp. Do not delete them!
//
// Some strings in this table may duplicate ones above. That is because the ones above were
// added in earlier builds where we freely mixed defined hresults and internal resource ids.
// You may wish to remove the earlier entry and redirect all references to it to the
// one in this table.
// 
// If you want to add resource strings to these Hresults, update the corerror.xml in inc 
// directory, and mscorurt.rc will be auto-generated to include the string.
//

#include <mscorurt.rc>

#endif