Saltar al contenido

vb.net declarar un ejemplo de código de función

Ejemplo 1: funciones en vb.net

'Function syntax
Private Function addFunc(ByVal [VarName] As [DataType]) As [ReturnDataType] 
	[action]
	Return [ReturnVal]
End Function

'Example function - add 2 numbers together
Private Function addFunc(ByVal a As Integer, ByVal b As Integer) As Integer
	Dim sum As Integer
	sum = a + b
	Return sum
End Function

'NOTE: If the keyword “return” is in the code, then it’s a function.
'If not, it’s a subroutine.

Ejemplo 2: funciones en vb.net

Function FunctionName [(ParameterList)] As ReturnType
    ' The following statement immediately transfers control back
    ' to the calling code and returns the value of Expression.
    Return Expression
End Function
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *