VB.NET扩展方法

前端之家收集整理的这篇文章主要介绍了VB.NET扩展方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在我的方法上面应用标签时,我得到了错误

Type System.Runtime.CompilerServices.Extension is not defined.

这是我的样本

<System.Runtime.CompilerServices.Extension()> _
     Public Sub test()

End Sub

我哪里错了?

编辑〜直接从MSDN文章here,同样的错误

Imports System.Runtime.CompilerServices

Module StringExtensions
     _
  Public Sub Print(ByVal aString As String)
        Console.WriteLine(aString)
    End Sub

End Module

我在我的项目中使用Visual Studio 2008和3.5 Framework.

Solution ~ The project was on 2.0 Framework. Changed to 3.5 and it works.

IDE指向什么版本的.net框架?

此外,乍一看,扩展方法的语法看起来不正确.

代码不完整.请将示例中的using语句放在任何人使用代码并编译它 – 以重现错误.

原文链接:https://www.f2er.com/vb/255313.html

猜你在找的VB相关文章