Converting some VB.NET code. Some of the static functions do some work on some parameters passed by reference, but does not return anything. What exactly is going on in the VB.NET functions that they can exist without having a return value and not get any debug errors? What happens to the boolean?
Overloads Shared Function ExampleMethod(ByRef buffer1() as Byte, ByRef buffer2() as Byte) As Boolean
'do stuff here, no return types
End Function
Overloads Shared Function ExampleMethod(ByRef buffer1() as Byte, ByRef buffer2 as Byte) As Boolean
'do stuff here, no return types
End Function
As Booleanmeans returnBoolean? You may also checkByRefin this post: stackoverflow.com/questions/9717057/…