78.4k views
4 votes
Using Visual Basics:

What is wrong with this Function prototype:
Func ReturnString(ByRef strReturn as String) As String

User Vinny
by
8.4k points

1 Answer

6 votes

Answer:

"Func" should be replaced with "Function" in Visual Basic.

Here's corrected version:

Function ReturnString(ByRef strReturn As String) As String

User Jorge Guberte
by
7.9k points