Mercurial > pub > bltoolkit
view Examples/VB/OverloadWithDefValue.vb @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
''@ example: ''@ emit Emit Imports System Imports BLToolkit.Aspects Imports NUnit.Framework Imports BLToolkit.Reflection Namespace Examples <TestFixture()> _ Public Class OverloadWithDefValue Public MustInherit Class TestObject Public Sub TestMethod( _ ByVal passthrough As Integer, _ Optional ByVal strVal As String = "str", _ Optional ByVal intVal As Integer = 123) Assert.AreEqual(321, passthrough) Assert.AreEqual("str", strVal) Assert.AreEqual(123, intVal) End Sub <Overload()> _ Public MustOverride Sub TestMethod( _ ByVal passthrough As Integer, _ ByVal dateVal As Date) End Class <Test()> _ Sub Test() Dim o As TestObject = TypeAccessor(Of TestObject).CreateInstance o.TestMethod(321, Today) End Sub End Class End Namespace