@@ -129,11 +129,11 @@ internal static MethodInfo FastGetMethod<T1, T2, TResult>(System.Func<T1, T2, TR
129
129
}
130
130
131
131
/// <summary> Get a <see cref="MethodInfo"/> from a method group </summary>
132
- /// <param name="func">A method group</param>
132
+ /// <param name="func">A method group</param>
133
133
/// <param name="a1">A dummy parameter</param>
134
134
/// <param name="a2">A dummy parameter</param>
135
135
/// <param name="a3">A dummy parameter</param>
136
- internal static MethodInfo FastGetMethod < T1 , T2 , T3 , TResult > ( System . Func < T1 , T2 , T3 , TResult > func , T1 a1 , T2 a2 , T3 a3 )
136
+ internal static MethodInfo FastGetMethod < T1 , T2 , T3 , TResult > ( System . Func < T1 , T2 , T3 , TResult > func , T1 a1 , T2 a2 , T3 a3 )
137
137
{
138
138
return func . Method ;
139
139
}
@@ -158,23 +158,23 @@ internal static MethodInfo FastGetMethodDefinition<T1, T2, TResult>(System.Func<
158
158
}
159
159
160
160
/// <summary> Get a <see cref="MethodInfo"/> from a method group </summary>
161
- /// <param name="func">A method group</param>
161
+ /// <param name="func">A method group</param>
162
162
/// <param name="a1">A dummy parameter</param>
163
163
/// <param name="a2">A dummy parameter</param>
164
164
/// <param name="a3">A dummy parameter</param>
165
- internal static MethodInfo FastGetMethodDefinition < T1 , T2 , T3 , TResult > ( System . Func < T1 , T2 , T3 , TResult > func , T1 a1 , T2 a2 , T3 a3 )
165
+ internal static MethodInfo FastGetMethodDefinition < T1 , T2 , T3 , TResult > ( System . Func < T1 , T2 , T3 , TResult > func , T1 a1 , T2 a2 , T3 a3 )
166
166
{
167
167
var method = func . Method ;
168
168
return method . IsGenericMethod ? method . GetGenericMethodDefinition ( ) : method ;
169
169
}
170
170
171
171
/// <summary> Get a <see cref="MethodInfo"/> from a method group </summary>
172
- /// <param name="func">A method group</param>
172
+ /// <param name="func">A method group</param>
173
173
/// <param name="a1">A dummy parameter</param>
174
174
/// <param name="a2">A dummy parameter</param>
175
175
/// <param name="a3">A dummy parameter</param>
176
176
/// <param name="a4">A dummy parameter</param>
177
- internal static MethodInfo FastGetMethodDefinition < T1 , T2 , T3 , T4 , TResult > ( System . Func < T1 , T2 , T3 , T4 , TResult > func , T1 a1 , T2 a2 , T3 a3 , T4 a4 )
177
+ internal static MethodInfo FastGetMethodDefinition < T1 , T2 , T3 , T4 , TResult > ( System . Func < T1 , T2 , T3 , T4 , TResult > func , T1 a1 , T2 a2 , T3 a3 , T4 a4 )
178
178
{
179
179
var method = func . Method ;
180
180
return method . IsGenericMethod ? method . GetGenericMethodDefinition ( ) : method ;
@@ -441,7 +441,7 @@ public static System.Type ClassForName(string name)
441
441
/// the method try to find the System.Type scanning all Assemblies of the <see cref="AppDomain.CurrentDomain"/>.
442
442
/// </remarks>
443
443
/// <exception cref="TypeLoadException">If no System.Type was found for <paramref name="classFullName"/>.</exception>
444
- public static System . Type ClassForFullName ( string classFullName )
444
+ public static System . Type ClassForFullName ( string classFullName )
445
445
{
446
446
var result = ClassForFullNameOrNull ( classFullName ) ;
447
447
if ( result == null )
0 commit comments