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/Resources/SatelliteContractVersionAttribute.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Resources/SatelliteContractVersionAttribute.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Resources/SatelliteContractVersionAttribute.cs b/src/System.Private.CoreLib/shared/System/Resources/SatelliteContractVersionAttribute.cs
index 070744767..aeccadca9 100644
--- a/src/System.Private.CoreLib/shared/System/Resources/SatelliteContractVersionAttribute.cs
+++ b/src/System.Private.CoreLib/shared/System/Resources/SatelliteContractVersionAttribute.cs
@@ -19,13 +19,13 @@ namespace System.Resources
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)]
public sealed class SatelliteContractVersionAttribute : Attribute
{
- public SatelliteContractVersionAttribute(String version)
+ public SatelliteContractVersionAttribute(string version)
{
if (version == null)
throw new ArgumentNullException(nameof(version));
Version = version;
}
- public String Version { get; }
+ public string Version { get; }
}
}