I'm having a simple issue, this is the method:
void someMethod(Object... args)
When i'm using new String[]{"a", "b"}
as parameter, i see two params in method : "a"
, "b"
separately, however, when i'm using null, new String[]{"a", "b"}
, param appearing as String array as expected.
Is there any way to transfer String array so it will be a String array in method using Objects...
?