'Declaration Protected Function New( _ ByVal functionName As String, _ ByVal minArgs As Integer, _ ByVal maxArgs As Integer, _ ByVal functionAttr As FunctionAttributes _ )
'Usage Dim functionName As String Dim minArgs As Integer Dim maxArgs As Integer Dim functionAttr As FunctionAttributes Dim instance As New Function(functionName, minArgs, maxArgs, functionAttr)
protected Function( string functionName, int minArgs, int maxArgs, FunctionAttributes functionAttr )
Parameters
- functionName
- A string value represents the function name.
- minArgs
- An integer values indicates the minimum argument count.
- maxArgs
- An integer values indicates the maximum argument count.
- functionAttr
- A FunctionAttributes value indicates attributes of the function.