Questions tagged «method-group»

5
C#中的方法组是什么?
在以下情况下,我经常遇到诸如“无法从“方法组”转换为“字符串””之类的错误: var list = new List<string>(); // ... snip list.Add(someObject.ToString); 当然,最后一行有一个错字,因为我忘了后面的调用括号ToString。正确的格式为: var list = new List<string>(); // ... snip list.Add(someObject.ToString()); // <- notice the parentheses 但是我开始想知道什么是方法组。谷歌并没有多大帮助,也不是MSDN。
351 c#  .net  method-group 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.