From 592219d253696ab5d5852df179f711ba488113f9 Mon Sep 17 00:00:00 2001 From: Santiago Fernandez Madero Date: Mon, 24 Jun 2019 14:57:46 -0500 Subject: [PATCH] API Review feedback (dotnet/corefx#38826) Commit migrated from https://github.com/dotnet/corefx/commit/ab249fa17463b2ea07bd43fc09b96320e84724d2 --- .../ref/System.Reflection.Emit.Lightweight.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/libraries/System.Reflection.Emit.Lightweight/ref/System.Reflection.Emit.Lightweight.cs b/src/libraries/System.Reflection.Emit.Lightweight/ref/System.Reflection.Emit.Lightweight.cs index a49eaeb..d8ae3f1 100644 --- a/src/libraries/System.Reflection.Emit.Lightweight/ref/System.Reflection.Emit.Lightweight.cs +++ b/src/libraries/System.Reflection.Emit.Lightweight/ref/System.Reflection.Emit.Lightweight.cs @@ -9,14 +9,14 @@ namespace System.Reflection.Emit { public sealed partial class DynamicMethod : System.Reflection.MethodInfo { - public DynamicMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes, System.Reflection.Module m, bool skipVisibility) { } - public DynamicMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type returnType, System.Type[] parameterTypes, System.Type owner, bool skipVisibility) { } - public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes) { } - public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes, bool restrictedSkipVisibility) { } - public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes, System.Reflection.Module m) { } - public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes, System.Reflection.Module m, bool skipVisibility) { } - public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes, System.Type owner) { } - public DynamicMethod(string name, System.Type returnType, System.Type[] parameterTypes, System.Type owner, bool skipVisibility) { } + public DynamicMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type? returnType, System.Type[]? parameterTypes, System.Reflection.Module m, bool skipVisibility) { } + public DynamicMethod(string name, System.Reflection.MethodAttributes attributes, System.Reflection.CallingConventions callingConvention, System.Type? returnType, System.Type[]? parameterTypes, System.Type owner, bool skipVisibility) { } + public DynamicMethod(string name, System.Type? returnType, System.Type[]? parameterTypes) { } + public DynamicMethod(string name, System.Type? returnType, System.Type[]? parameterTypes, bool restrictedSkipVisibility) { } + public DynamicMethod(string name, System.Type? returnType, System.Type[]? parameterTypes, System.Reflection.Module m) { } + public DynamicMethod(string name, System.Type? returnType, System.Type[]? parameterTypes, System.Reflection.Module m, bool skipVisibility) { } + public DynamicMethod(string name, System.Type? returnType, System.Type[]? parameterTypes, System.Type owner) { } + public DynamicMethod(string name, System.Type? returnType, System.Type[]? parameterTypes, System.Type owner, bool skipVisibility) { } public override System.Reflection.MethodAttributes Attributes { get { throw null; } } public override System.Reflection.CallingConventions CallingConvention { get { throw null; } } public override System.Type? DeclaringType { get { throw null; } } -- 2.7.4