Acid Cool
Newcomer
I have a paroblem with this function in RGBColor class:
Public Class RGBColor
Public Function getComplement(ByVal rgb As Integer()) As Integer()
'some code
End Function
End Class
-----------------------------------------------------------------
ByVal rgb As Integer() --> I guess this is an array...
How do I insert values in it when I call getComplement function.
I must provide this function with 3 integers (r, g, b)? How do I do this?
Please help me....
Public Class RGBColor
Public Function getComplement(ByVal rgb As Integer()) As Integer()
'some code
End Function
End Class
-----------------------------------------------------------------
ByVal rgb As Integer() --> I guess this is an array...
How do I insert values in it when I call getComplement function.
I must provide this function with 3 integers (r, g, b)? How do I do this?
Please help me....