J 
		
								
				
				
			
		Jonathan Lurie
Is it a bad practice using a object array.
Example
Sub DoSomething(ByVal arg() As Object)
.....
End Sub
DoSomething(New Object() {"A", "B"})
If yes, then how do we create a function when parameter could be anything.
John
				
			Example
Sub DoSomething(ByVal arg() As Object)
.....
End Sub
DoSomething(New Object() {"A", "B"})
If yes, then how do we create a function when parameter could be anything.
John