开发者

Obligation to call a method

开发者 https://www.devze.com 2023-02-07 05:38 出处:网络
In VB .NET, when you create a user control class, you have the obligation to call the sub InitializeComponent within the constructor.

In VB .NET, when you create a user control class, you have the obligation to call the sub InitializeComponent within the constructor.

If you don't you'll a 开发者_StackOverflow中文版warning message like this :

'Public Sub New()' in designer-generated type 'MyUserControl' should call InitializeComponent method.

What is the mechanism used to raise this warning? Is it something I can reproduce for my own functions?


This is built-in behavior for the VB.NET compiler. This sample class triggers it:

<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Public Class Class1
    Public Sub New()
       '' Warning BC40054 generated here
    End Sub
End Class

The attribute matters. It is not otherwise generically useful behavior, you cannot tell the compiler to make it generate a similar warning using your own attribute.

0

精彩评论

暂无评论...
验证码 换一张
取 消