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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DependencyAttribute.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DependencyAttribute.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DependencyAttribute.cs b/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DependencyAttribute.cs
index 0fe07edc9..7bb7acec4 100644
--- a/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DependencyAttribute.cs
+++ b/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DependencyAttribute.cs
@@ -7,13 +7,13 @@ namespace System.Runtime.CompilerServices
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
public sealed class DependencyAttribute : Attribute
{
- public DependencyAttribute(String dependentAssemblyArgument, LoadHint loadHintArgument)
+ public DependencyAttribute(string dependentAssemblyArgument, LoadHint loadHintArgument)
{
DependentAssembly = dependentAssemblyArgument;
LoadHint = loadHintArgument;
}
- public String DependentAssembly { get; }
+ public string DependentAssembly { get; }
public LoadHint LoadHint { get; }
}
} \ No newline at end of file