我通过更改某些类的接口实现顺序给自己挖了一个洞。就目前而言,我需要通过并扩展许多属性来实现 Get 和 Set。Get 和 Set 方法非常相似,但非常棘手,难以实现自动化。例子:
Public Property SpecificTable as SpecificTableType
我有与此类似的属性,我需要将其扩展为:
Public Property SpecificTable as SpecificTableType
Get
Return DirectCast(Me.Table, SpecificTableType)
End Get
Set(ByVal value as SpecificTableType)
Me.Table = value
End Set
它非常简单,当我键入 Get 并在属性下按 Enter 时,VS Studio 会自动生成很多,包括Set(ByVal value as SpecificTableType)
这让我想知道,除了片段,因为我已经定义了属性,VS如何完成这个自动生成,我可以自定义它吗?它可以让我的手指免于一些痛苦。