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/Interop/IL/PInvokeDelegateWrapper.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.cs b/src/coreclr/tools/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.cs
index dcc2fbff41c..c7577641566 100644
--- a/src/coreclr/tools/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.cs
+++ b/src/coreclr/tools/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.cs
@@ -3,7 +3,6 @@
using System;
using System.Collections.Generic;
-using Internal.IL;
using Internal.IL.Stubs;
using Debug = System.Diagnostics.Debug;
using System.Threading;
@@ -154,7 +153,7 @@ namespace Internal.TypeSystem.Interop
Debug.Assert(delegateType.IsDelegate);
Module = owningModule;
- DelegateType = delegateType;
+ DelegateType = delegateType;
_interopStateManager = interopStateManager;
}
@@ -238,7 +237,7 @@ namespace Internal.TypeSystem.Interop
{
MethodDesc[] methods = new MethodDesc[] {
new PInvokeDelegateWrapperConstructor(this), // Constructor
- new DelegateMarshallingMethodThunk(DelegateType, this, _interopStateManager,
+ new DelegateMarshallingMethodThunk(DelegateType, this, _interopStateManager,
DelegateMarshallingMethodThunkKind.ForwardNativeFunctionWrapper) // a forward marshalling instance method
};