What's the difference between an argument and a parameter?

后端 未结 30 1874
北恋
北恋 2020-11-22 01:08

When verbally talking about methods, I\'m never sure whether to use the word argument or parameter or something else. Either way the other people know what

30条回答
  •  说谎
    说谎 (楼主)
    2020-11-22 02:05

    Or may be its even simpler to remember like this, in case of optional arguments for a method:

    public void Method(string parameter = "argument") 
    {
    
    }
    

    parameter is the parameter, its value, "argument" is the argument :)

提交回复
热议问题