通过“///”自动评论在 Visual Studio 2010 中的委托上方

发布于 2024-10-05 00:34:46 字数 495 浏览 5 评论 0原文

我的代表:我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你对谁都笑 2024-10-12 00:34:46

因为此代码未编译:

错误CS0081:类型参数声明必须是标识符而不是类型

Because this code is not compiled:

error CS0081: Type parameter declaration must be an identifier not a type

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文