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:
authorMaryam Ariyan <maryam.ariyan@microsoft.com>2019-03-05 22:36:02 +0300
committerThays Grazia <thaystg@gmail.com>2019-04-18 18:01:45 +0300
commit02ca54592d5df11f4088954c552b42b15df4279f (patch)
tree609cb6c16f72ea7650c5d687080e7dc04fb63a38
parentef45232b9efb735c9f83774fd069bb6367a96854 (diff)
Add Type Forward (dotnet/coreclr#23036)
Signed-off-by: dotnet-bot <anirudhagnihotry098@gmail.com>
-rw-r--r--src/System.Private.CoreLib/shared/System/Runtime/AmbiguousImplementationException.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Runtime/AmbiguousImplementationException.cs b/src/System.Private.CoreLib/shared/System/Runtime/AmbiguousImplementationException.cs
index 1a7ef0aef..9e43ec019 100644
--- a/src/System.Private.CoreLib/shared/System/Runtime/AmbiguousImplementationException.cs
+++ b/src/System.Private.CoreLib/shared/System/Runtime/AmbiguousImplementationException.cs
@@ -8,6 +8,7 @@ using System.Runtime.Serialization;
namespace System.Runtime
{
[Serializable]
+ [System.Runtime.CompilerServices.TypeForwardedFrom("System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public sealed class AmbiguousImplementationException : Exception
{
public AmbiguousImplementationException()