Quiero crear un procedimiento que su parámetro sea también un procedimiento. ¿Es posible?
creé algunos procedimientos que se utilizarán como parámetros siguientes:Cómo pasar MethodName como parámetro de un procedimiento en VBNET
Private Sub Jump(xStr as string)
Msgbox xStr & " is jumping."
End Sub
Private Sub Run(xStr as string)
Msgbox xStr & " is jumping."
End Sub
este procedimiento debe llamar al procedimiento anterior:
Private Sub ExecuteProcedure(?, StringParameter) '- i do not know what to put in there
? ' - name of the procedure with parameter
End Sub
uso:
ExecuteProcedure(Jump, "StringName")
ExecuteProcedure(Run, "StringName")
gracias! mi problema ahora está resuelto –
+1 porque generalmente es tarea de terceros emitir votos en lugar de OP y soy un tercero. – Lion