asked on
Public Class ListsDB
Private _myCallsList As New List(Of String)
Private _myTestList As New List(Of String)
Private _myVisitsList As New List(Of String)
Public Property MyCallsList() As List(Of String)
Get
Return _myCallsList
End Get
Set(ByVal value As List(Of String))
_myCallsList = value
End Set
End Property
Public Property MyTestList() As List(Of String)
Get
Return _myTestList
End Get
Set(ByVal value As List(Of String))
_myTestList = value
End Set
End Property
Public Property myVisitsList() As List(Of String)
Get
Return _myVisitsList
End Get
Set(ByVal value As List(Of String))
_myVisitsList = value
End Set
End Property
ASKER
The successor to Active Server Pages, ASP.NET websites utilize the .NET framework to produce dynamic, data and content-driven web applications and services. ASP.NET code can be written using any .NET supported language. As of 2009, ASP.NET can also apply the Model-View-Controller (MVC) pattern to web applications
TRUSTED BY
In VB its:
private something as TypeOfSomething
or
private something as New TypeOfSomething()
and in C# it's:
private TypeOfSomething something;
or
private TypeOfSomething something = new TypeOfSomething();
and not forget the ;
For registering events for example:
button1.Click += ....
if you click Tab twice after the += then it also auto completes you with needed text and also creates an empty event handler.