wormwood
wormwood

Reputation: 441

Args statement in eclipse

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

Answers (1)

Daisy Holton
Daisy Holton

Reputation: 519

I would try capitalizing String, if you weren't earlier. Args is the command line arguments from the main function.

Upvotes: 1

Related Questions