通过“///”自动评论在 Visual Studio 2010 中的委托上方
我的代表:我在 VS2010 中的代表上输入了 3 个斜杠“///”,然后出现典型的自动注释。
/// <summary>
///
/// </summary>
/// <typeparam name="T"></typeparam>
/// <typeparam name="?"></typeparam>
/// <param name="param"></param>
/// <returns></returns>
private delegate IEnumerable<T> SearchInputText<T, string>(string param)
为什么它使第二个名字=“?” ???不应该是 STRING 吗?
my delegate: I typed over the delegate in VS2010 the 3 slashes "///" and the typical automatic comment appears.
/// <summary>
///
/// </summary>
/// <typeparam name="T"></typeparam>
/// <typeparam name="?"></typeparam>
/// <param name="param"></param>
/// <returns></returns>
private delegate IEnumerable<T> SearchInputText<T, string>(string param)
Why does it make the 2nd name = "?" ??? should it not be STRING ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为此代码未编译:
错误CS0081:类型参数声明必须是标识符而不是类型
Because this code is not compiled:
error CS0081: Type parameter declaration must be an identifier not a type