Answers for "visual basic function"

1

functions in 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.
Posted by: Guest on September-04-2020
0

visual basic function

Private Function example(Integer i){return i}
Posted by: Guest on August-21-2021

Browse Popular Code Answers by Language