Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/TypeSystem/IL/HelperExtensions.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/IL/HelperExtensions.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/IL/HelperExtensions.cs b/src/coreclr/tools/Common/TypeSystem/IL/HelperExtensions.cs
index 66344ff698d..4ccaff2d6dd 100644
--- a/src/coreclr/tools/Common/TypeSystem/IL/HelperExtensions.cs
+++ b/src/coreclr/tools/Common/TypeSystem/IL/HelperExtensions.cs
@@ -69,7 +69,7 @@ namespace Internal.IL
MethodDesc method = type.GetMethod(name, signature);
if (method == null)
{
- throw new InvalidOperationException(String.Format("Expected method '{0}' not found on type '{1}'", name, type));
+ throw new InvalidOperationException(string.Format("Expected method '{0}' not found on type '{1}'", name, type));
}
return method;
@@ -84,7 +84,7 @@ namespace Internal.IL
FieldDesc field = type.GetField(name);
if (field == null)
{
- throw new InvalidOperationException(String.Format("Expected field '{0}' not found on type '{1}'", name, type));
+ throw new InvalidOperationException(string.Format("Expected field '{0}' not found on type '{1}'", name, type));
}
return field;
@@ -99,7 +99,7 @@ namespace Internal.IL
MetadataType nestedType = type.GetNestedType(name);
if (nestedType == null)
{
- throw new InvalidOperationException(String.Format("Expected type '{0}' not found on type '{1}'", name, type));
+ throw new InvalidOperationException(string.Format("Expected type '{0}' not found on type '{1}'", name, type));
}
return nestedType;
@@ -115,8 +115,8 @@ namespace Internal.IL
if (type == null)
{
throw new InvalidOperationException(
- String.Format("Expected type '{0}' not found in module '{1}'",
- @namespace.Length > 0 ? String.Concat(@namespace, ".", name) : name,
+ string.Format("Expected type '{0}' not found in module '{1}'",
+ @namespace.Length > 0 ? string.Concat(@namespace, ".", name) : name,
module));
}