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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'external/corert/src/System.Private.CoreLib/shared/System/Reflection/AssemblyNameFormatter.cs')
-rw-r--r--external/corert/src/System.Private.CoreLib/shared/System/Reflection/AssemblyNameFormatter.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/external/corert/src/System.Private.CoreLib/shared/System/Reflection/AssemblyNameFormatter.cs b/external/corert/src/System.Private.CoreLib/shared/System/Reflection/AssemblyNameFormatter.cs
index 821a8d3c8..4873318d3 100644
--- a/external/corert/src/System.Private.CoreLib/shared/System/Reflection/AssemblyNameFormatter.cs
+++ b/external/corert/src/System.Private.CoreLib/shared/System/Reflection/AssemblyNameFormatter.cs
@@ -14,7 +14,7 @@ namespace System.Reflection
{
const int PUBLIC_KEY_TOKEN_LEN = 8;
- if (a.Name == string.Empty)
+ if (string.IsNullOrEmpty(a.Name))
throw new FileLoadException();
StringBuilder sb = new StringBuilder();
@@ -54,7 +54,7 @@ namespace System.Reflection
string cultureName = a.CultureName;
if (cultureName != null)
{
- if (cultureName == string.Empty)
+ if (cultureName.Length == 0)
cultureName = "neutral";
sb.Append(", Culture=");
sb.AppendQuoted(cultureName);
@@ -64,7 +64,7 @@ namespace System.Reflection
if (pkt != null)
{
if (pkt.Length > PUBLIC_KEY_TOKEN_LEN)
- throw new ArgumentException();
+ throw new ArgumentException("Invalid token length", nameof(a));
sb.Append(", PublicKeyToken=");
if (pkt.Length == 0)