Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SR.cs
Go to the documentation of this file.
3
4namespace System;
5
6internal static class SR
7{
8 private static readonly bool s_usingResourceKeys = AppContext.TryGetSwitch("System.Resources.UseSystemResourceKeys", out var isEnabled) && isEnabled;
9
11
13
14 internal static string ReducibleMustOverrideReduce => GetResourceString("ReducibleMustOverrideReduce");
15
16 internal static string MustReduceToDifferent => GetResourceString("MustReduceToDifferent");
17
18 internal static string ReducedNotCompatible => GetResourceString("ReducedNotCompatible");
19
20 internal static string SetterHasNoParams => GetResourceString("SetterHasNoParams");
21
22 internal static string PropertyCannotHaveRefType => GetResourceString("PropertyCannotHaveRefType");
23
24 internal static string IndexesOfSetGetMustMatch => GetResourceString("IndexesOfSetGetMustMatch");
25
26 internal static string AccessorsCannotHaveVarArgs => GetResourceString("AccessorsCannotHaveVarArgs");
27
28 internal static string AccessorsCannotHaveByRefArgs => GetResourceString("AccessorsCannotHaveByRefArgs");
29
30 internal static string BoundsCannotBeLessThanOne => GetResourceString("BoundsCannotBeLessThanOne");
31
32 internal static string TypeMustNotBeByRef => GetResourceString("TypeMustNotBeByRef");
33
34 internal static string TypeMustNotBePointer => GetResourceString("TypeMustNotBePointer");
35
36 internal static string SetterMustBeVoid => GetResourceString("SetterMustBeVoid");
37
38 internal static string PropertyTypeMustMatchGetter => GetResourceString("PropertyTypeMustMatchGetter");
39
40 internal static string PropertyTypeMustMatchSetter => GetResourceString("PropertyTypeMustMatchSetter");
41
42 internal static string BothAccessorsMustBeStatic => GetResourceString("BothAccessorsMustBeStatic");
43
44 internal static string OnlyStaticFieldsHaveNullInstance => GetResourceString("OnlyStaticFieldsHaveNullInstance");
45
46 internal static string OnlyStaticPropertiesHaveNullInstance => GetResourceString("OnlyStaticPropertiesHaveNullInstance");
47
48 internal static string OnlyStaticMethodsHaveNullInstance => GetResourceString("OnlyStaticMethodsHaveNullInstance");
49
50 internal static string PropertyTypeCannotBeVoid => GetResourceString("PropertyTypeCannotBeVoid");
51
52 internal static string InvalidUnboxType => GetResourceString("InvalidUnboxType");
53
54 internal static string ExpressionMustBeWriteable => GetResourceString("ExpressionMustBeWriteable");
55
56 internal static string ArgumentMustNotHaveValueType => GetResourceString("ArgumentMustNotHaveValueType");
57
58 internal static string MustBeReducible => GetResourceString("MustBeReducible");
59
60 internal static string AllTestValuesMustHaveSameType => GetResourceString("AllTestValuesMustHaveSameType");
61
62 internal static string AllCaseBodiesMustHaveSameType => GetResourceString("AllCaseBodiesMustHaveSameType");
63
64 internal static string DefaultBodyMustBeSupplied => GetResourceString("DefaultBodyMustBeSupplied");
65
66 internal static string LabelMustBeVoidOrHaveExpression => GetResourceString("LabelMustBeVoidOrHaveExpression");
67
68 internal static string LabelTypeMustBeVoid => GetResourceString("LabelTypeMustBeVoid");
69
70 internal static string QuotedExpressionMustBeLambda => GetResourceString("QuotedExpressionMustBeLambda");
71
72 internal static string VariableMustNotBeByRef => GetResourceString("VariableMustNotBeByRef");
73
74 internal static string DuplicateVariable => GetResourceString("DuplicateVariable");
75
76 internal static string StartEndMustBeOrdered => GetResourceString("StartEndMustBeOrdered");
77
78 internal static string FaultCannotHaveCatchOrFinally => GetResourceString("FaultCannotHaveCatchOrFinally");
79
80 internal static string TryMustHaveCatchFinallyOrFault => GetResourceString("TryMustHaveCatchFinallyOrFault");
81
82 internal static string BodyOfCatchMustHaveSameTypeAsBodyOfTry => GetResourceString("BodyOfCatchMustHaveSameTypeAsBodyOfTry");
83
84 internal static string ExtensionNodeMustOverrideProperty => GetResourceString("ExtensionNodeMustOverrideProperty");
85
86 internal static string UserDefinedOperatorMustBeStatic => GetResourceString("UserDefinedOperatorMustBeStatic");
87
88 internal static string UserDefinedOperatorMustNotBeVoid => GetResourceString("UserDefinedOperatorMustNotBeVoid");
89
90 internal static string CoercionOperatorNotDefined => GetResourceString("CoercionOperatorNotDefined");
91
92 internal static string UnaryOperatorNotDefined => GetResourceString("UnaryOperatorNotDefined");
93
94 internal static string BinaryOperatorNotDefined => GetResourceString("BinaryOperatorNotDefined");
95
96 internal static string ReferenceEqualityNotDefined => GetResourceString("ReferenceEqualityNotDefined");
97
98 internal static string OperandTypesDoNotMatchParameters => GetResourceString("OperandTypesDoNotMatchParameters");
99
100 internal static string OverloadOperatorTypeDoesNotMatchConversionType => GetResourceString("OverloadOperatorTypeDoesNotMatchConversionType");
101
102 internal static string ConversionIsNotSupportedForArithmeticTypes => GetResourceString("ConversionIsNotSupportedForArithmeticTypes");
103
104 internal static string ArgumentMustBeArray => GetResourceString("ArgumentMustBeArray");
105
106 internal static string ArgumentMustBeBoolean => GetResourceString("ArgumentMustBeBoolean");
107
108 internal static string EqualityMustReturnBoolean => GetResourceString("EqualityMustReturnBoolean");
109
110 internal static string ArgumentMustBeFieldInfoOrPropertyInfo => GetResourceString("ArgumentMustBeFieldInfoOrPropertyInfo");
111
112 internal static string ArgumentMustBeFieldInfoOrPropertyInfoOrMethod => GetResourceString("ArgumentMustBeFieldInfoOrPropertyInfoOrMethod");
113
114 internal static string ArgumentMustBeInstanceMember => GetResourceString("ArgumentMustBeInstanceMember");
115
116 internal static string ArgumentMustBeInteger => GetResourceString("ArgumentMustBeInteger");
117
118 internal static string ArgumentMustBeArrayIndexType => GetResourceString("ArgumentMustBeArrayIndexType");
119
120 internal static string ArgumentMustBeSingleDimensionalArrayType => GetResourceString("ArgumentMustBeSingleDimensionalArrayType");
121
122 internal static string ArgumentTypesMustMatch => GetResourceString("ArgumentTypesMustMatch");
123
124 internal static string CannotAutoInitializeValueTypeElementThroughProperty => GetResourceString("CannotAutoInitializeValueTypeElementThroughProperty");
125
126 internal static string CannotAutoInitializeValueTypeMemberThroughProperty => GetResourceString("CannotAutoInitializeValueTypeMemberThroughProperty");
127
128 internal static string IncorrectTypeForTypeAs => GetResourceString("IncorrectTypeForTypeAs");
129
130 internal static string CoalesceUsedOnNonNullType => GetResourceString("CoalesceUsedOnNonNullType");
131
132 internal static string ExpressionTypeCannotInitializeArrayType => GetResourceString("ExpressionTypeCannotInitializeArrayType");
133
134 internal static string ArgumentTypeDoesNotMatchMember => GetResourceString("ArgumentTypeDoesNotMatchMember");
135
136 internal static string ArgumentMemberNotDeclOnType => GetResourceString("ArgumentMemberNotDeclOnType");
137
138 internal static string ExpressionTypeDoesNotMatchReturn => GetResourceString("ExpressionTypeDoesNotMatchReturn");
139
140 internal static string ExpressionTypeDoesNotMatchAssignment => GetResourceString("ExpressionTypeDoesNotMatchAssignment");
141
142 internal static string ExpressionTypeDoesNotMatchLabel => GetResourceString("ExpressionTypeDoesNotMatchLabel");
143
144 internal static string ExpressionTypeNotInvocable => GetResourceString("ExpressionTypeNotInvocable");
145
146 internal static string FieldNotDefinedForType => GetResourceString("FieldNotDefinedForType");
147
148 internal static string InstanceFieldNotDefinedForType => GetResourceString("InstanceFieldNotDefinedForType");
149
150 internal static string FieldInfoNotDefinedForType => GetResourceString("FieldInfoNotDefinedForType");
151
152 internal static string IncorrectNumberOfIndexes => GetResourceString("IncorrectNumberOfIndexes");
153
154 internal static string IncorrectNumberOfLambdaDeclarationParameters => GetResourceString("IncorrectNumberOfLambdaDeclarationParameters");
155
156 internal static string IncorrectNumberOfMembersForGivenConstructor => GetResourceString("IncorrectNumberOfMembersForGivenConstructor");
157
158 internal static string IncorrectNumberOfArgumentsForMembers => GetResourceString("IncorrectNumberOfArgumentsForMembers");
159
160 internal static string LambdaTypeMustBeDerivedFromSystemDelegate => GetResourceString("LambdaTypeMustBeDerivedFromSystemDelegate");
161
162 internal static string MemberNotFieldOrProperty => GetResourceString("MemberNotFieldOrProperty");
163
164 internal static string MethodContainsGenericParameters => GetResourceString("MethodContainsGenericParameters");
165
166 internal static string MethodIsGeneric => GetResourceString("MethodIsGeneric");
167
168 internal static string MethodNotPropertyAccessor => GetResourceString("MethodNotPropertyAccessor");
169
170 internal static string PropertyDoesNotHaveGetter => GetResourceString("PropertyDoesNotHaveGetter");
171
172 internal static string PropertyDoesNotHaveSetter => GetResourceString("PropertyDoesNotHaveSetter");
173
174 internal static string PropertyDoesNotHaveAccessor => GetResourceString("PropertyDoesNotHaveAccessor");
175
176 internal static string NotAMemberOfType => GetResourceString("NotAMemberOfType");
177
178 internal static string NotAMemberOfAnyType => GetResourceString("NotAMemberOfAnyType");
179
180 internal static string UnsupportedExpressionType => GetResourceString("UnsupportedExpressionType");
181
182 internal static string ParameterExpressionNotValidAsDelegate => GetResourceString("ParameterExpressionNotValidAsDelegate");
183
184 internal static string PropertyNotDefinedForType => GetResourceString("PropertyNotDefinedForType");
185
186 internal static string InstancePropertyNotDefinedForType => GetResourceString("InstancePropertyNotDefinedForType");
187
188 internal static string InstancePropertyWithoutParameterNotDefinedForType => GetResourceString("InstancePropertyWithoutParameterNotDefinedForType");
189
190 internal static string InstancePropertyWithSpecifiedParametersNotDefinedForType => GetResourceString("InstancePropertyWithSpecifiedParametersNotDefinedForType");
191
192 internal static string InstanceAndMethodTypeMismatch => GetResourceString("InstanceAndMethodTypeMismatch");
193
194 internal static string TypeContainsGenericParameters => GetResourceString("TypeContainsGenericParameters");
195
196 internal static string TypeIsGeneric => GetResourceString("TypeIsGeneric");
197
198 internal static string TypeMissingDefaultConstructor => GetResourceString("TypeMissingDefaultConstructor");
199
200 internal static string ElementInitializerMethodNotAdd => GetResourceString("ElementInitializerMethodNotAdd");
201
202 internal static string ElementInitializerMethodNoRefOutParam => GetResourceString("ElementInitializerMethodNoRefOutParam");
203
204 internal static string ElementInitializerMethodWithZeroArgs => GetResourceString("ElementInitializerMethodWithZeroArgs");
205
206 internal static string ElementInitializerMethodStatic => GetResourceString("ElementInitializerMethodStatic");
207
208 internal static string TypeNotIEnumerable => GetResourceString("TypeNotIEnumerable");
209
210 internal static string UnhandledBinary => GetResourceString("UnhandledBinary");
211
212 internal static string UnhandledBinding => GetResourceString("UnhandledBinding");
213
214 internal static string UnhandledBindingType => GetResourceString("UnhandledBindingType");
215
216 internal static string UnhandledUnary => GetResourceString("UnhandledUnary");
217
218 internal static string UnknownBindingType => GetResourceString("UnknownBindingType");
219
220 internal static string UserDefinedOpMustHaveConsistentTypes => GetResourceString("UserDefinedOpMustHaveConsistentTypes");
221
222 internal static string UserDefinedOpMustHaveValidReturnType => GetResourceString("UserDefinedOpMustHaveValidReturnType");
223
224 internal static string LogicalOperatorMustHaveBooleanOperators => GetResourceString("LogicalOperatorMustHaveBooleanOperators");
225
226 internal static string MethodWithArgsDoesNotExistOnType => GetResourceString("MethodWithArgsDoesNotExistOnType");
227
228 internal static string GenericMethodWithArgsDoesNotExistOnType => GetResourceString("GenericMethodWithArgsDoesNotExistOnType");
229
230 internal static string MethodWithMoreThanOneMatch => GetResourceString("MethodWithMoreThanOneMatch");
231
232 internal static string PropertyWithMoreThanOneMatch => GetResourceString("PropertyWithMoreThanOneMatch");
233
234 internal static string IncorrectNumberOfTypeArgsForFunc => GetResourceString("IncorrectNumberOfTypeArgsForFunc");
235
236 internal static string IncorrectNumberOfTypeArgsForAction => GetResourceString("IncorrectNumberOfTypeArgsForAction");
237
238 internal static string ArgumentCannotBeOfTypeVoid => GetResourceString("ArgumentCannotBeOfTypeVoid");
239
240 internal static string OutOfRange => GetResourceString("OutOfRange");
241
242 internal static string LabelTargetAlreadyDefined => GetResourceString("LabelTargetAlreadyDefined");
243
244 internal static string LabelTargetUndefined => GetResourceString("LabelTargetUndefined");
245
246 internal static string ControlCannotLeaveFinally => GetResourceString("ControlCannotLeaveFinally");
247
248 internal static string ControlCannotLeaveFilterTest => GetResourceString("ControlCannotLeaveFilterTest");
249
250 internal static string AmbiguousJump => GetResourceString("AmbiguousJump");
251
252 internal static string ControlCannotEnterTry => GetResourceString("ControlCannotEnterTry");
253
254 internal static string ControlCannotEnterExpression => GetResourceString("ControlCannotEnterExpression");
255
256 internal static string NonLocalJumpWithValue => GetResourceString("NonLocalJumpWithValue");
257
258 internal static string InvalidLvalue => GetResourceString("InvalidLvalue");
259
260 internal static string UndefinedVariable => GetResourceString("UndefinedVariable");
261
262 internal static string CannotCloseOverByRef => GetResourceString("CannotCloseOverByRef");
263
264 internal static string UnexpectedVarArgsCall => GetResourceString("UnexpectedVarArgsCall");
265
266 internal static string RethrowRequiresCatch => GetResourceString("RethrowRequiresCatch");
267
268 internal static string TryNotAllowedInFilter => GetResourceString("TryNotAllowedInFilter");
269
270 internal static string MustRewriteToSameNode => GetResourceString("MustRewriteToSameNode");
271
272 internal static string MustRewriteChildToSameType => GetResourceString("MustRewriteChildToSameType");
273
274 internal static string MustRewriteWithoutMethod => GetResourceString("MustRewriteWithoutMethod");
275
276 internal static string InvalidNullValue => GetResourceString("InvalidNullValue");
277
278 internal static string InvalidObjectType => GetResourceString("InvalidObjectType");
279
280 internal static string TryNotSupportedForMethodsWithRefArgs => GetResourceString("TryNotSupportedForMethodsWithRefArgs");
281
282 internal static string TryNotSupportedForValueTypeInstances => GetResourceString("TryNotSupportedForValueTypeInstances");
283
284 internal static string EnumerationIsDone => GetResourceString("EnumerationIsDone");
285
286 internal static string TestValueTypeDoesNotMatchComparisonMethodParameter => GetResourceString("TestValueTypeDoesNotMatchComparisonMethodParameter");
287
288 internal static string SwitchValueTypeDoesNotMatchComparisonMethodParameter => GetResourceString("SwitchValueTypeDoesNotMatchComparisonMethodParameter");
289
290 internal static string InvalidArgumentValue_ParamName => GetResourceString("InvalidArgumentValue_ParamName");
291
292 internal static string NonEmptyCollectionRequired => GetResourceString("NonEmptyCollectionRequired");
293
294 internal static string CollectionModifiedWhileEnumerating => GetResourceString("CollectionModifiedWhileEnumerating");
295
296 internal static string ExpressionMustBeReadable => GetResourceString("ExpressionMustBeReadable");
297
298 internal static string ExpressionTypeDoesNotMatchMethodParameter => GetResourceString("ExpressionTypeDoesNotMatchMethodParameter");
299
300 internal static string ExpressionTypeDoesNotMatchParameter => GetResourceString("ExpressionTypeDoesNotMatchParameter");
301
302 internal static string ExpressionTypeDoesNotMatchConstructorParameter => GetResourceString("ExpressionTypeDoesNotMatchConstructorParameter");
303
304 internal static string IncorrectNumberOfMethodCallArguments => GetResourceString("IncorrectNumberOfMethodCallArguments");
305
306 internal static string IncorrectNumberOfLambdaArguments => GetResourceString("IncorrectNumberOfLambdaArguments");
307
308 internal static string IncorrectNumberOfConstructorArguments => GetResourceString("IncorrectNumberOfConstructorArguments");
309
310 internal static string NonStaticConstructorRequired => GetResourceString("NonStaticConstructorRequired");
311
312 internal static string NonAbstractConstructorRequired => GetResourceString("NonAbstractConstructorRequired");
313
314 internal static string FirstArgumentMustBeCallSite => GetResourceString("FirstArgumentMustBeCallSite");
315
316 internal static string NoOrInvalidRuleProduced => GetResourceString("NoOrInvalidRuleProduced");
317
318 internal static string TypeMustBeDerivedFromSystemDelegate => GetResourceString("TypeMustBeDerivedFromSystemDelegate");
319
320 internal static string TypeParameterIsNotDelegate => GetResourceString("TypeParameterIsNotDelegate");
321
322 internal static string ArgumentTypeCannotBeVoid => GetResourceString("ArgumentTypeCannotBeVoid");
323
324 internal static string ArgCntMustBeGreaterThanNameCnt => GetResourceString("ArgCntMustBeGreaterThanNameCnt");
325
326 internal static string BinderNotCompatibleWithCallSite => GetResourceString("BinderNotCompatibleWithCallSite");
327
328 internal static string BindingCannotBeNull => GetResourceString("BindingCannotBeNull");
329
330 internal static string DynamicBinderResultNotAssignable => GetResourceString("DynamicBinderResultNotAssignable");
331
332 internal static string DynamicBindingNeedsRestrictions => GetResourceString("DynamicBindingNeedsRestrictions");
333
334 internal static string DynamicObjectResultNotAssignable => GetResourceString("DynamicObjectResultNotAssignable");
335
336 internal static string InvalidMetaObjectCreated => GetResourceString("InvalidMetaObjectCreated");
337
338 internal static string AmbiguousMatchInExpandoObject => GetResourceString("AmbiguousMatchInExpandoObject");
339
340 internal static string CollectionReadOnly => GetResourceString("CollectionReadOnly");
341
342 internal static string KeyDoesNotExistInExpando => GetResourceString("KeyDoesNotExistInExpando");
343
344 internal static string SameKeyExistsInExpando => GetResourceString("SameKeyExistsInExpando");
345
346 internal static string Arg_KeyNotFoundWithKey => GetResourceString("Arg_KeyNotFoundWithKey");
347
348 private static bool UsingResourceKeys()
349 {
350 return s_usingResourceKeys;
351 }
352
353 internal static string GetResourceString(string resourceKey)
354 {
355 if (UsingResourceKeys())
356 {
357 return resourceKey;
358 }
359 string result = null;
360 try
361 {
362 result = ResourceManager.GetString(resourceKey);
363 }
365 {
366 }
367 return result;
368 }
369
370 internal static string Format(string resourceFormat, object p1)
371 {
372 if (UsingResourceKeys())
373 {
374 return string.Join(", ", resourceFormat, p1);
375 }
376 return string.Format(resourceFormat, p1);
377 }
378
379 internal static string Format(string resourceFormat, object p1, object p2)
380 {
381 if (UsingResourceKeys())
382 {
383 return string.Join(", ", resourceFormat, p1, p2);
384 }
385 return string.Format(resourceFormat, p1, p2);
386 }
387
388 internal static string Format(string resourceFormat, object p1, object p2, object p3)
389 {
390 if (UsingResourceKeys())
391 {
392 return string.Join(", ", resourceFormat, p1, p2, p3);
393 }
394 return string.Format(resourceFormat, p1, p2, p3);
395 }
396
397 internal static string Format(string resourceFormat, params object[] args)
398 {
399 if (args != null)
400 {
401 if (UsingResourceKeys())
402 {
403 return resourceFormat + ", " + string.Join(", ", args);
404 }
405 return string.Format(resourceFormat, args);
406 }
407 return resourceFormat;
408 }
409}
static bool TryGetSwitch(string switchName, out bool isEnabled)
Definition AppContext.cs:74
virtual ? string GetString(string name)
static string UserDefinedOpMustHaveConsistentTypes
Definition SR.cs:220
static string MustBeReducible
Definition SR.cs:58
static string PropertyTypeCannotBeVoid
Definition SR.cs:50
static string PropertyWithMoreThanOneMatch
Definition SR.cs:232
static string DefaultBodyMustBeSupplied
Definition SR.cs:64
static string ExpressionTypeDoesNotMatchConstructorParameter
Definition SR.cs:302
static string ControlCannotEnterExpression
Definition SR.cs:254
static string UserDefinedOperatorMustBeStatic
Definition SR.cs:86
static string IndexesOfSetGetMustMatch
Definition SR.cs:24
static string ArgumentTypeDoesNotMatchMember
Definition SR.cs:134
static string PropertyDoesNotHaveGetter
Definition SR.cs:170
static string MemberNotFieldOrProperty
Definition SR.cs:162
static string ReferenceEqualityNotDefined
Definition SR.cs:96
static string UndefinedVariable
Definition SR.cs:260
static string TryMustHaveCatchFinallyOrFault
Definition SR.cs:80
static string OutOfRange
Definition SR.cs:240
static string UnexpectedVarArgsCall
Definition SR.cs:264
static string IncorrectNumberOfMethodCallArguments
Definition SR.cs:304
static string ArgumentMustBeSingleDimensionalArrayType
Definition SR.cs:120
static string AmbiguousMatchInExpandoObject
Definition SR.cs:338
static string PropertyDoesNotHaveAccessor
Definition SR.cs:174
static string InvalidUnboxType
Definition SR.cs:52
static string NotAMemberOfType
Definition SR.cs:176
static string CollectionReadOnly
Definition SR.cs:28
static string OnlyStaticPropertiesHaveNullInstance
Definition SR.cs:46
static string TryNotSupportedForValueTypeInstances
Definition SR.cs:282
static string DynamicObjectResultNotAssignable
Definition SR.cs:334
static string ControlCannotLeaveFinally
Definition SR.cs:246
static string ExpressionTypeCannotInitializeArrayType
Definition SR.cs:132
static string UnhandledUnary
Definition SR.cs:216
static string TypeMissingDefaultConstructor
Definition SR.cs:198
static string DuplicateVariable
Definition SR.cs:74
static ResourceManager s_resourceManager
Definition SR.cs:10
static string TypeMustNotBeByRef
Definition SR.cs:32
static string ElementInitializerMethodNoRefOutParam
Definition SR.cs:202
static string EqualityMustReturnBoolean
Definition SR.cs:108
static string PropertyNotDefinedForType
Definition SR.cs:184
static string MethodNotPropertyAccessor
Definition SR.cs:168
static string ElementInitializerMethodWithZeroArgs
Definition SR.cs:204
static string UnknownBindingType
Definition SR.cs:218
static string TryNotAllowedInFilter
Definition SR.cs:268
static string ExpressionTypeDoesNotMatchParameter
Definition SR.cs:300
static string SwitchValueTypeDoesNotMatchComparisonMethodParameter
Definition SR.cs:288
static string ExpressionTypeDoesNotMatchAssignment
Definition SR.cs:140
static string ExpressionTypeDoesNotMatchMethodParameter
Definition SR.cs:298
static string ExtensionNodeMustOverrideProperty
Definition SR.cs:84
static string OnlyStaticMethodsHaveNullInstance
Definition SR.cs:48
static string DynamicBindingNeedsRestrictions
Definition SR.cs:332
static string IncorrectNumberOfMembersForGivenConstructor
Definition SR.cs:156
static string IncorrectTypeForTypeAs
Definition SR.cs:128
static string TypeContainsGenericParameters
Definition SR.cs:194
static string ArgumentMustNotHaveValueType
Definition SR.cs:56
static string AccessorsCannotHaveVarArgs
Definition SR.cs:26
static string MustRewriteWithoutMethod
Definition SR.cs:274
static string InstancePropertyNotDefinedForType
Definition SR.cs:186
static string TryNotSupportedForMethodsWithRefArgs
Definition SR.cs:280
static string MustRewriteChildToSameType
Definition SR.cs:272
static string Format(string resourceFormat, object p1)
Definition SR.cs:370
static string SetterMustBeVoid
Definition SR.cs:36
static string Format(string resourceFormat, object p1, object p2)
Definition SR.cs:379
static string ArgumentMustBeFieldInfoOrPropertyInfo
Definition SR.cs:110
static string ArgCntMustBeGreaterThanNameCnt
Definition SR.cs:324
static string CannotCloseOverByRef
Definition SR.cs:262
static string ArgumentMustBeFieldInfoOrPropertyInfoOrMethod
Definition SR.cs:112
static string IncorrectNumberOfArgumentsForMembers
Definition SR.cs:158
static string InvalidLvalue
Definition SR.cs:258
static string ArgumentMustBeArray
Definition SR.cs:104
static string PropertyTypeMustMatchSetter
Definition SR.cs:40
static string InvalidMetaObjectCreated
Definition SR.cs:336
static string IncorrectNumberOfTypeArgsForAction
Definition SR.cs:236
static string CollectionModifiedWhileEnumerating
Definition SR.cs:294
static string UserDefinedOperatorMustNotBeVoid
Definition SR.cs:88
static string PropertyDoesNotHaveSetter
Definition SR.cs:172
static string FieldNotDefinedForType
Definition SR.cs:146
static string IncorrectNumberOfLambdaDeclarationParameters
Definition SR.cs:154
static string IncorrectNumberOfTypeArgsForFunc
Definition SR.cs:234
static string InstancePropertyWithoutParameterNotDefinedForType
Definition SR.cs:188
static string AmbiguousJump
Definition SR.cs:250
static string ExpressionMustBeWriteable
Definition SR.cs:54
static string ArgumentMemberNotDeclOnType
Definition SR.cs:136
static string GenericMethodWithArgsDoesNotExistOnType
Definition SR.cs:228
static string OperandTypesDoNotMatchParameters
Definition SR.cs:98
static string IncorrectNumberOfLambdaArguments
Definition SR.cs:306
static string OnlyStaticFieldsHaveNullInstance
Definition SR.cs:44
static string TypeMustBeDerivedFromSystemDelegate
Definition SR.cs:318
static string ExpressionTypeDoesNotMatchLabel
Definition SR.cs:142
static string LabelTargetAlreadyDefined
Definition SR.cs:242
static string CoalesceUsedOnNonNullType
Definition SR.cs:130
static string ArgumentMustBeArrayIndexType
Definition SR.cs:118
static string InstancePropertyWithSpecifiedParametersNotDefinedForType
Definition SR.cs:190
static string TypeNotIEnumerable
Definition SR.cs:208
static string UserDefinedOpMustHaveValidReturnType
Definition SR.cs:222
static string RethrowRequiresCatch
Definition SR.cs:266
static string BoundsCannotBeLessThanOne
Definition SR.cs:30
static string InvalidNullValue
Definition SR.cs:276
static string ConversionIsNotSupportedForArithmeticTypes
Definition SR.cs:102
static string BindingCannotBeNull
Definition SR.cs:328
static string LogicalOperatorMustHaveBooleanOperators
Definition SR.cs:224
static string TestValueTypeDoesNotMatchComparisonMethodParameter
Definition SR.cs:286
static string MustReduceToDifferent
Definition SR.cs:16
static ResourceManager ResourceManager
Definition SR.cs:12
static string LabelTypeMustBeVoid
Definition SR.cs:68
static string NonLocalJumpWithValue
Definition SR.cs:256
static string IncorrectNumberOfConstructorArguments
Definition SR.cs:308
static string ElementInitializerMethodStatic
Definition SR.cs:206
static string ExpressionTypeNotInvocable
Definition SR.cs:144
static string AllCaseBodiesMustHaveSameType
Definition SR.cs:62
static string ArgumentCannotBeOfTypeVoid
Definition SR.cs:238
static string MethodContainsGenericParameters
Definition SR.cs:164
static string SameKeyExistsInExpando
Definition SR.cs:344
static string NonAbstractConstructorRequired
Definition SR.cs:312
static string UnhandledBindingType
Definition SR.cs:214
static string MustRewriteToSameNode
Definition SR.cs:270
static string CoercionOperatorNotDefined
Definition SR.cs:90
static string ArgumentMustBeInteger
Definition SR.cs:116
static string StartEndMustBeOrdered
Definition SR.cs:76
static string NonStaticConstructorRequired
Definition SR.cs:310
static string BinderNotCompatibleWithCallSite
Definition SR.cs:326
static string NonEmptyCollectionRequired
Definition SR.cs:292
static string MethodWithArgsDoesNotExistOnType
Definition SR.cs:226
static string ControlCannotLeaveFilterTest
Definition SR.cs:248
static string QuotedExpressionMustBeLambda
Definition SR.cs:70
static string ElementInitializerMethodNotAdd
Definition SR.cs:200
static string TypeParameterIsNotDelegate
Definition SR.cs:320
static string FieldInfoNotDefinedForType
Definition SR.cs:150
static string NotAMemberOfAnyType
Definition SR.cs:178
static string ReducibleMustOverrideReduce
Definition SR.cs:14
static string BodyOfCatchMustHaveSameTypeAsBodyOfTry
Definition SR.cs:82
static string UnhandledBinding
Definition SR.cs:212
static string InvalidArgumentValue_ParamName
Definition SR.cs:290
static string CannotAutoInitializeValueTypeElementThroughProperty
Definition SR.cs:124
static string EnumerationIsDone
Definition SR.cs:284
static string ArgumentTypeCannotBeVoid
Definition SR.cs:322
static string GetResourceString(string resourceKey)
Definition SR.cs:101
static string FirstArgumentMustBeCallSite
Definition SR.cs:314
static string ExpressionMustBeReadable
Definition SR.cs:296
static bool UsingResourceKeys()
Definition SR.cs:348
static string TypeMustNotBePointer
Definition SR.cs:34
static string MethodWithMoreThanOneMatch
Definition SR.cs:230
static string LambdaTypeMustBeDerivedFromSystemDelegate
Definition SR.cs:160
static string InvalidObjectType
Definition SR.cs:278
static string ArgumentTypesMustMatch
Definition SR.cs:122
static string InstanceAndMethodTypeMismatch
Definition SR.cs:192
static string CannotAutoInitializeValueTypeMemberThroughProperty
Definition SR.cs:126
static string LabelTargetUndefined
Definition SR.cs:244
static string FaultCannotHaveCatchOrFinally
Definition SR.cs:78
static string KeyDoesNotExistInExpando
Definition SR.cs:342
static string Format(string resourceFormat, object p1, object p2, object p3)
Definition SR.cs:388
static string TypeIsGeneric
Definition SR.cs:196
static string ArgumentMustBeInstanceMember
Definition SR.cs:114
static readonly bool s_usingResourceKeys
Definition SR.cs:8
static string OverloadOperatorTypeDoesNotMatchConversionType
Definition SR.cs:100
static string ExpressionTypeDoesNotMatchReturn
Definition SR.cs:138
static string BothAccessorsMustBeStatic
Definition SR.cs:42
static string VariableMustNotBeByRef
Definition SR.cs:72
static string UnaryOperatorNotDefined
Definition SR.cs:92
static string IncorrectNumberOfIndexes
Definition SR.cs:152
static string AllTestValuesMustHaveSameType
Definition SR.cs:60
static string BinaryOperatorNotDefined
Definition SR.cs:94
static string UnhandledBinary
Definition SR.cs:210
static string ArgumentMustBeBoolean
Definition SR.cs:106
static string ControlCannotEnterTry
Definition SR.cs:252
static string MethodIsGeneric
Definition SR.cs:166
static string PropertyTypeMustMatchGetter
Definition SR.cs:38
static string Arg_KeyNotFoundWithKey
Definition SR.cs:94
static string AccessorsCannotHaveByRefArgs
Definition SR.cs:28
static string UnsupportedExpressionType
Definition SR.cs:180
static string Format(string resourceFormat, params object[] args)
Definition SR.cs:397
static string ParameterExpressionNotValidAsDelegate
Definition SR.cs:182
static string NoOrInvalidRuleProduced
Definition SR.cs:316
static string SetterHasNoParams
Definition SR.cs:20
static string PropertyCannotHaveRefType
Definition SR.cs:22
static string LabelMustBeVoidOrHaveExpression
Definition SR.cs:66
static string ReducedNotCompatible
Definition SR.cs:18
static string InstanceFieldNotDefinedForType
Definition SR.cs:148
static string DynamicBinderResultNotAssignable
Definition SR.cs:330