9
1
Option Strict On
2
Imports System.Collections.Generic
3
Public Module Module1
4
Public Sub Main()
5
Dim foo As Dictionary(Of String, Integer) = New Dictionary(String, Integer)
6
'Or
7
Dim bar As New Dictionary(Of String, Integer)
8
End Sub
9
End Module
Cached Result
child constructor
Parent class Constructor
child class method
Parent class Method
Addition of 2 and 3: 5
Using Array: a=5 b=7 Avg is: 6
Using Array: a=5 b=5 Avg is: 5
Parent class Constructor
child class method
Parent class Method
Addition of 2 and 3: 5
Using Array: a=5 b=7 Avg is: 6
Using Array: a=5 b=5 Avg is: 5