Reputation: 441
In Eclipse, when I type:
string name = "value";
This always becomes
string name args=args "value";
when I press enter.
What is this args
? And why does it appear everytime I use =
?
Upvotes: 0
Views: 79
Reputation: 519
I would try capitalizing String, if you weren't earlier. Args is the command line arguments from the main function.
Upvotes: 1