Sunday, 24 April 2016

If I don't provide any arguments on the command line, what value would be passed in String array argument of Main method ?


If I don't provide any arguments on the command line, what value would be passed in String array argument of Main method ?

It will be an empty array.

args = new String[0];

No comments:

Post a Comment

Note: only a member of this blog may post a comment.