Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How VB.NET customizes properties

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces how to customize the attributes of VB.NET, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.

Class file: (Class1)

Imports System

Imports System.Reflection

< AttributeUsage(AttributeTargets. All, AllowMultiple:=True, Inherited:=True)>

_

Public Class Class1

Inherits System.Attribute

Private FamilyName As String

Private GivenName As String

Public Sub New (ByVal Family

Name As String)

Me.FamilyName = FamilyName

End Sub

Public Overrides Function

ToString () As String

Return String.Format ("Author:

{0} {1} ", FamilyName, GivenName)

End Function

Public Property Family () As String

Get

Return FamilyName

End Get

Set (ByVal Value As String)

FamilyName = Value

End Set

End Property

Public Property Given () As String

Get

Return GivenName

End Get

Set (ByVal Value As String)

GivenName = Value

End Set

End Property

End Class

Files that use VB.NET custom properties (Form3.VB)

< Class1("Watkins", Given:="Damien"), Class1("Abrams")>

_

Public Class Form3

Inherits System.Windows.Forms.Form

Private Sub Button1_Click (ByVal sender

As System.Object, ByVal e As System.

EventArgs) Handles Button1.Click

Dim t As TypeType = Type.GetType

("WindowsApplication6.Form3")

Dim attributes As Object () =

T.GetCustomAttributes (True)

Console.WriteLine ("Custom"

Attributes are: ")

For Each o As Object

In attributes

Console.WriteLine (o)

Next

End Sub

End Class

Thank you for reading this article carefully. I hope the article "how to customize the attributes of VB.NET" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report