Megosztás a következőn keresztül:


IFunctionProvider.Lookup(String) Method

Definition

Returns an array of overloads for the given function name. This may return null instead of an empty array. The returned MethodInfos should be public static methods that can be freely invoked by IL in a different assembly. They should also be "pure" functions - with the output only depending on the inputs and NOT on any global state.

public System.Reflection.MethodInfo[] Lookup (string name);
abstract member Lookup : string -> System.Reflection.MethodInfo[]
Public Function Lookup (name As String) As MethodInfo()

Parameters

name
String

Returns

Applies to