diff options
Diffstat (limited to 'src/SMAPI/Framework/Reflection/ReflectedMethod.cs')
-rw-r--r-- | src/SMAPI/Framework/Reflection/ReflectedMethod.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/SMAPI/Framework/Reflection/ReflectedMethod.cs b/src/SMAPI/Framework/Reflection/ReflectedMethod.cs index 82737a7f..26112806 100644 --- a/src/SMAPI/Framework/Reflection/ReflectedMethod.cs +++ b/src/SMAPI/Framework/Reflection/ReflectedMethod.cs @@ -22,7 +22,7 @@ namespace StardewModdingAPI.Framework.Reflection /********* ** Accessors *********/ - /// <summary>The reflection metadata.</summary> + /// <inheritdoc /> public MethodInfo MethodInfo { get; } @@ -54,9 +54,7 @@ namespace StardewModdingAPI.Framework.Reflection this.MethodInfo = method; } - /// <summary>Invoke the method.</summary> - /// <typeparam name="TValue">The return type.</typeparam> - /// <param name="arguments">The method arguments to pass in.</param> + /// <inheritdoc /> public TValue Invoke<TValue>(params object[] arguments) { // invoke method @@ -85,8 +83,7 @@ namespace StardewModdingAPI.Framework.Reflection } } - /// <summary>Invoke the method.</summary> - /// <param name="arguments">The method arguments to pass in.</param> + /// <inheritdoc /> public void Invoke(params object[] arguments) { // invoke method |