July 2015
Intermediate to advanced
1300 pages
87h 27m
English
Visual Basic 2015 has some new behaviors for interface implementation. For example, consider this interface, which exposes a read-only property and a class that implements the interface:
Public Interface ITest ReadOnly Property SomeInformation As String Sub DoSomething()End InterfaceClass Test Implements ITest Public ReadOnly Property SomeInformation As String Implements ITest.SomeInformation Get '... End Get End Property Public Sub DoSomething() Implements ITest.DoSomething '... End SubEnd Class
As you can see, the read-only property in the interface is then implemented by a read-only property in the class. Visual Basic ...
Read now
Unlock full access