return Byte Array from function

  • Thread starter Thread starter Nikolay Petrov
  • Start date Start date
Hi Nikolay.
\\\
public fuction MyFunction (byval MyByte as byte()) as byte()
Return MyByte
end function
///

I hope this helps?

Cor
 
* "Nikolay Petrov said:
How I should declare a Function, which returns byte array?

\\\
Public Function Foo() As Byte()
Return New Byte() {1, 2, 3, 4}
End Function
///
 
Back
Top