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/src/System/InvokeUtils.cs')
-rw-r--r--src/System.Private.CoreLib/src/System/InvokeUtils.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/src/System/InvokeUtils.cs b/src/System.Private.CoreLib/src/System/InvokeUtils.cs
index 8b92cfef3..69435aee9 100644
--- a/src/System.Private.CoreLib/src/System/InvokeUtils.cs
+++ b/src/System.Private.CoreLib/src/System/InvokeUtils.cs
@@ -14,6 +14,7 @@ using Internal.Runtime.CompilerServices;
namespace System
{
+ [System.Runtime.CompilerServices.ReflectionBlocked]
[System.Runtime.CompilerServices.DependencyReductionRoot]
public static class InvokeUtils
{
@@ -32,7 +33,7 @@ namespace System
//
// null converted to default(T) (this is important when T is a valuetype.)
//
- // There is also another transform of T -> Nullable<T>. This method acknowleges that rule but does not actually transform the T.
+ // There is also another transform of T -> Nullable<T>. This method acknowledges that rule but does not actually transform the T.
// Rather, the transformation happens naturally when the caller unboxes the value to its final destination.
//
// This method is targeted by the Delegate ILTransformer.